mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 17:30:56 +00:00
19 lines
294 B
C++
19 lines
294 B
C++
|
#include "stdafx.h"
|
||
|
#include "Game.h"
|
||
|
#include "Configuration.h"
|
||
|
|
||
|
int main(int, char*[]) {
|
||
|
|
||
|
Configuration configuration;
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
configuration.setDebugMode(true);
|
||
|
configuration.setProfileMode(true);
|
||
|
#endif
|
||
|
|
||
|
Game game(configuration);
|
||
|
game.initialise();
|
||
|
game.runLoop();
|
||
|
|
||
|
return 0;
|
||
|
}
|