You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
406 B
24 lines
406 B
3 years ago
|
#include <SFML/Graphics.hpp>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
|
||
|
sf::CircleShape shape(100.f);
|
||
|
shape.setFillColor(sf::Color::Green);
|
||
|
|
||
|
while (window.isOpen())
|
||
|
{
|
||
|
sf::Event event;
|
||
|
while (window.pollEvent(event))
|
||
|
{
|
||
|
if (event.type == sf::Event::Closed)
|
||
|
window.close();
|
||
|
}
|
||
|
|
||
|
window.clear();
|
||
|
window.draw(shape);
|
||
|
window.display();
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|