Files
Bomberman/sources/main.cpp
2021-05-14 16:26:07 +02:00

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;
}
}