primer commit
This commit is contained in:
11
source/main.cpp
Normal file
11
source/main.cpp
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user