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

9 lines
214 B
C++

#include "application/applicationsfml.h"
int main()
{
ApplicationSFML app(std::make_shared<sf::RenderWindow>(sf::VideoMode{1280, 720}, "Test", sf::Style::Fullscreen));
if (app.init())
app.run();
}