pacman/pacman/src/main.cpp

8 lines
150 B
C++
Raw Normal View History

#include "../lib/Game.hpp"
2020-11-27 13:10:09 +00:00
extern "C" int main([[maybe_unused]] int argc, [[maybe_unused]] char * argv[]) {
Game game;
game.run();
return 0;
}