McRogueFace/src/main.cpp

9 lines
100 B
C++

#include <SFML/Graphics.hpp>
#include "GameEngine.h"
int main()
{
GameEngine g;
g.run();
}