summaryrefslogtreecommitdiff
path: root/main.cpp
blob: c3024089ad01ae0e7a2b4eb9562f79d44fa2d1d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* **************************************
 * 	Includes							*
 * **************************************/

#include "Global_Inc.h"
#include "Gameplay.h"
#include "Menu.h"

/* **************************************
 * 	Global variables					*
 * **************************************/

Gamebuino gb;

int main(){

	init();

	SystemInit();

	gb.begin();

	// Main loop
    while (1)
	{
		gb.titleScreen(F("Pocket Empires"));

		MainMenu();
	}


	return 0;

}