/minild29

To get this branch, use:
bzr branch /bzr/minild29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "Monocle.h"
#include "Dark.h"

using namespace Monocle;

int main(void)
{
  Game *game = new Game();
  
  Assets::SetContentPath("Content/");
  
  game->SetScene(new Dark::DarkScene());
  game->Main();

  delete game;
  return 0;
}

#if defined (MONOCLE_WINDOWS)
extern "C" int _get_output_format( void ){ return 0; }
#endif