So I woke up today, opened my project up and tried to run it - as luck would have it, it stops before even entering the main function.
However, it worked last night, but doesn't work now. I haven't done anything to change it.
This is source.cpp
:
#include <SFML/Graphics.hpp>
#include "Game.h"
#include <iostream>
using namespace std;
int main()
{
string name;
cout << "alupigus";
name = "Dino Attack";
Game game(800, 800, name);
game.loadAssets();
game.Run();
return 0;
}
When I compile and run it in the console, it doesn't show anything but the black screen. I can't enter anything, and the renderwindow from SFML doesn't show up.
I'm only using SFML as an external library, but I didn't modify any links, didn't move its files, etc.