primer commit

This commit is contained in:
2025-04-08 08:23:18 +02:00
parent 94c89b7ced
commit b6682fe7ff
30 changed files with 18573 additions and 1 deletions

11
source/main.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <memory> // for make_unique, unique_ptr
#include "logo.h" // for Logo
int main()
{
// Crea el objeto Logo
auto logo = std::make_unique<Logo>();
// Bucle principal
return logo->run();
}