Main Page (SFML / Learn (original) (raw)

Welcome

Welcome to the official SFML documentation. Here you will find a detailed view of all the SFML classes, as well as source files.
If you are looking for tutorials, you can visit the official website at www.sfml-dev.org.

Short example

Here is a short example, to show you how simple it is to use SFML :

#include <SFML/Audio.hpp>

#include <SFML/Graphics.hpp>

int main()

{

return EXIT_FAILURE;

return EXIT_FAILURE;

sf::String Text("Hello SFML", Arial, 50);

return EXIT_FAILURE;

while (App.IsOpened())

{

while (App.GetEvent(Event))

{

if (Event.Type == sf::Event::Closed)

App.Close();

}

App.Clear();

App.Draw(Sprite);

App.Draw(Text);

App.Display();

}

return EXIT_SUCCESS;

}