pacman/src/main.cpp

8 lines
86 B
C++

#include "Game.hpp"
int main(int, char**) {
Game game;
game.run();
return 0;
}