mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 05:45:10 +00:00
24 lines
271 B
C++
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;
|
|
}
|
|
}
|