zombo-shooter/src/main.cpp
2025-10-24 10:57:22 +02:00

15 lines
125 B
C++

#include <ctime>
#include "Game.hpp"
int main()
{
srand(time(nullptr));
Game game = Game();
game.run();
return 0;
}