now uses cmake

This commit is contained in:
MitchellHansen
2016-11-25 21:37:26 -08:00
parent fc11ebfafb
commit 394e98baa7
20 changed files with 416 additions and 280 deletions

12
main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include <SFML/Window.hpp>
#include <SFML/Graphics.hpp>
#include "App.h"
int main()
{
App app;
app.Run();
return 0;
}