Files
Bomberman/sources/main.cpp
2021-05-21 10:56:57 +02:00

24 lines
271 B
C++

/*
** EPITECH PROJECT, 2021
** Bomberman
** File description:
** main
*/
#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;
}
}