summaryrefslogtreecommitdiff
path: root/main.cpp
blob: fbeede5b2c8c4b1dd38f58aad3a02e4299b95ab2 (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
/* **************************************
 * 	Includes							*
 * **************************************/

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

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

Gamebuino gb;

int main(){
	
	init();
	
	SystemInit();
	
	gb.begin();
	
	/* MAIN LOOP */
	while(1)
	{
		gb.titleScreen(F("Pocket Empires"));
		
		MainMenu();
	}
		
	
	return 0;
	
}