mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 05:45:10 +00:00
16 lines
196 B
C++
16 lines
196 B
C++
#include <iostream>
|
|
#include <Wal.hpp>
|
|
|
|
int main()
|
|
{
|
|
WAL::WAL wal;
|
|
|
|
try {
|
|
wal.run();
|
|
return 0;
|
|
} catch (const std::exception &ex) {
|
|
std::cerr << ex.what() << std::endl;
|
|
return 84;
|
|
}
|
|
}
|