summaryrefslogtreecommitdiff
path: root/main.cpp
blob: a746a57659b46a7b20b4fc13c09c96de8ea1d85a (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;
	
}