blob: 8960149989b187b194eb28cdafe6af7dd2c7d7b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "game.hpp"
#include "graphics.hpp"
int main()
{
Game game;
Graphics graphics(game, "mario sokoban", 640, 480);
while (graphics.isRunning())
graphics.update();
return 0;
}
|