pacman/src/main.cpp

8 lines
83 B
C++
Raw Permalink Normal View History

2020-11-29 18:17:23 +00:00
#include "Game.hpp"
2020-11-27 13:10:09 +00:00
2021-06-22 08:32:19 +00:00
int main() {
2021-07-05 12:10:01 +00:00
pacman::Game game;
2020-11-27 13:10:09 +00:00
game.run();
return 0;
}