pacman/src/main.cpp

8 lines
86 B
C++
Raw Normal View History

2020-11-29 18:17:23 +00:00
#include "Game.hpp"
2020-11-27 13:10:09 +00:00
2021-06-01 11:57:09 +00:00
int main(int, char**) {
2020-11-27 13:10:09 +00:00
Game game;
game.run();
return 0;
}