mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-03 05:05:15 +00:00
4c6f44c394
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
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;
|
|
} |