This commit is contained in:
2015-08-22 06:25:01 -07:00
parent 6f25b81081
commit 56c4f158fc
16 changed files with 1166 additions and 0 deletions

12
aStar/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;
}