15 lines
183 B
C++
15 lines
183 B
C++
|
|
#include <SFML/Window.hpp>
|
|
|
|
int main()
|
|
{
|
|
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
|
|
|
|
for (;;)
|
|
{
|
|
App.Display();
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|