SFML_Experiments/3DTest/main.cpp

12 lines
164 B
C++
Raw Permalink Normal View History

2020-01-08 14:45:47 +03:00
#include "SynGame.hpp"
int main()
{
2020-01-08 16:19:25 +03:00
RenderWindow window(1600, 900, "3D Test Syntriax");
2020-01-08 14:45:47 +03:00
while (window.IsOpen())
window.Update();
return 0;
}