bzr branch
http://9ix.org/bzr/minild29
1
by Josh C
initial commit |
1 |
#include "Monocle.h" |
2 |
#include "Dark.h" |
|
3 |
||
4 |
using namespace Monocle; |
|
5 |
||
6 |
int main(void) |
|
7 |
{ |
|
8 |
Game *game = new Game(); |
|
9 |
||
10 |
Assets::SetContentPath("Content/"); |
|
11 |
||
12 |
game->SetScene(new Dark::DarkScene()); |
|
13 |
game->Main(); |
|
14 |
||
15 |
delete game; |
|
16 |
return 0; |
|
17 |
} |
|
18 |
||
19 |
#if defined (MONOCLE_WINDOWS) |
|
20 |
extern "C" int _get_output_format( void ){ return 0; } |
|
21 |
#endif |