Adding a scene manger and wal functions

This commit is contained in:
Zoe Roux
2021-05-14 16:26:07 +02:00
parent 72b3af0f38
commit 43bbf487a3
18 changed files with 339 additions and 19 deletions
+10 -2
View File
@@ -1,7 +1,15 @@
#include <iostream>
#include <Wal.hpp>
int main()
{
std::cout << "Hello, World!" << std::endl;
return 0;
WAL::WAL wal;
try {
wal.run();
return 0;
} catch (const std::exception &ex) {
std::cerr << ex.what() << std::endl;
return 84;
}
}