mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 05:45:10 +00:00
31 lines
510 B
C++
31 lines
510 B
C++
/*
|
|
** EPITECH PROJECT, 2021
|
|
** Bomberman
|
|
** File description:
|
|
** main
|
|
*/
|
|
|
|
|
|
#include <iostream>
|
|
#include "Window.hpp"
|
|
#include "Drawables/2D/Text.hpp"
|
|
#include "Drawables/2D/Circle.hpp"
|
|
#include "Controllers/Keyboard.hpp"
|
|
#include "Camera/Camera3D.hpp"
|
|
#include "Drawables/3D/Grid.hpp"
|
|
#include "Drawables/3D/Cube.hpp"
|
|
#include <cmath>
|
|
#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;
|
|
}
|
|
}
|