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 and functions.
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::Text text("Hello SFML", font, 50);
return EXIT_FAILURE;
{
{
}
window.draw(sprite);
window.draw(text);
}
return EXIT_SUCCESS;
}