2021-12-29 09:59:18 -05:00
|
|
|
#include "application/applicationsfml.h"
|
2021-04-03 13:14:31 -04:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2022-02-05 20:33:09 -05:00
|
|
|
sf::RenderWindow window(sf::VideoMode{1280, 720}, "Test", sf::Style::Default);
|
2022-01-12 09:09:43 -05:00
|
|
|
ApplicationSFML app(&window);
|
2021-12-29 09:59:18 -05:00
|
|
|
if (app.init())
|
|
|
|
app.run();
|
2021-04-03 13:14:31 -04:00
|
|
|
}
|