Pong/src/main.cpp

12 lines
191 B
C++
Raw Normal View History

2024-01-29 19:18:38 +01:00
// SPDX-License-Identifier: BSD-2-Clause
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();
}