Pong/main.cpp
2024-01-19 15:06:48 +01:00

9 lines
97 B
C++

#include "Game.h"
int main() {
Game game(SDL_Point{1000, 600});
return game.loop();
}