mirror of
https://github.com/lov3b/Pong.git
synced 2024-11-10 07:20:12 +01:00
9 lines
97 B
C++
9 lines
97 B
C++
|
#include "Game.h"
|
||
|
|
||
|
|
||
|
int main() {
|
||
|
Game game(SDL_Point{1000, 600});
|
||
|
|
||
|
return game.loop();
|
||
|
}
|