You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
project-kyoku/src/main.cpp

10 lines
226 B
C++

2 years ago
#include "application/applicationsfml.h"
3 years ago
int main()
{
sf::RenderWindow window(sf::VideoMode{1280, 720}, "Project Kyoku", sf::Style::Default);
ApplicationSFML app(&window);
2 years ago
if (app.init())
app.run();
3 years ago
}