Fataler Fehler: SFML/Graphics.hpp: Es gibt keine solche Datei oder Verzeichnis

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Fataler Fehler: SFML/Graphics.hpp: Es gibt keine solche Datei oder Verzeichnis

by Anonymous » 18 Apr 2025, 03:42

Ich stehe nach Problem mit SFML auf ein Problem, aber hoffentlich lohnt es sich am Ende. Der Code: < /p>

Code: Select all

#include < SFML/Graphics.hpp >
#include < SFML/Window.hpp >

int main(){
sf::RenderWindow Window;
Window.create(sf::VideoMode(800, 600), "SFML");

while(Window.isOpen()){
sf::Event Event;
while(Window.pollEvent(Event)){
if(Event.type == sf::Event::Closed)
Window.close();
}
}
}

Top