Ejemplo n.º 1
0
int Engine::Exec() {
	
	if(Init() == false) {
		return -1;
	}
	
	Game game;
	if(game.Exec() == false)
	{
		return 1;
	}
	
	game.Close();
	Cleanup_Process();
	
	return 0;
}