Pong/src/main.cpp

10 lines
149 B
C++
Raw Normal View History

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
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();
}