Restructured solution. "Escape-The-Dawn" now links into a .lib, which is used in "Executable" to facilitate easier unit testing.

This commit is contained in:
2014-03-06 18:57:12 +01:00
parent 5a15491573
commit b87b1f5704
10 changed files with 271 additions and 72 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "Engine.h"
int main(int argc, char* argv[])
{
Engine engine(argc, argv);
while (engine.Running())
engine.Tick();
return EXIT_SUCCESS;
}