2024-01-19 15:06:48 +01:00
|
|
|
#include "Game.h"
|
2024-01-28 22:39:03 +01:00
|
|
|
#include <SDL.h>
|
2024-01-19 15:06:48 +01:00
|
|
|
|
|
|
|
|
2024-01-29 16:19:04 +01:00
|
|
|
extern "C" int main(int _argc, char *_argv[]) {
|
2024-01-19 15:06:48 +01:00
|
|
|
Game game(SDL_Point{1000, 600});
|
|
|
|
|
|
|
|
return game.loop();
|
|
|
|
}
|