mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-05 19:04:26 +00:00
Adding a scene manger and wal functions
This commit is contained in:
+10
-2
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user