alright -_- I have the program setup as a test to open and display a window nothing else and it does what its supposed to do but I have to rebuild it each time
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow Window(sf::VideoMode(800, 600, 32), "SFML Sample Application");
while (Window.IsOpen())
{
sf::Event Event;
while (Window.PollEvent(Event))
{
switch (Event.Type)
{
case sf::Event::Closed:
Window.Close();
break;
default:
break;
}
}
Window.Clear(sf::Color(0, 255, 255));
Window.Display();
}
return 0;
}
is the working code its just I get this weird error popup saying
scripts failed to load either because they dont exist or because they contain syntax errors:
c:\users\Tim.Tim-PC\Desktop\C++workspace\Test\\sfml-graphics-d ect ect
it has one for graphics as well and for system audio network both with and without the -d I know I dont need all of those linked/included I just did it cuz this tutorial did it and I just wanted to follow it at first word for word
the file path is the same for each of the items listed been trying to find the answer all day