mirror of
https://github.com/lov3b/Pong.git
synced 2024-11-10 07:20:12 +01:00
10 lines
149 B
C++
10 lines
149 B
C++
#include "Game.h"
|
|
#include <SDL.h>
|
|
|
|
|
|
extern "C" int main(int _argc, char *_argv[]) {
|
|
Game game(SDL_Point{1000, 600});
|
|
|
|
return game.loop();
|
|
}
|