blob: 315acc846257f5d78a7fb16a6c3324f5db15c160 (
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
|
#ifndef SYSTEM_H__
#define SYSTEM_H__
/* **************************************
* Includes *
* **************************************/
#include <Gamebuino.h>
/* **************************************
* Defines *
* **************************************/
/* **************************************
* Structs and enums *
* **************************************/
/* **************************************
* Global Variables *
* **************************************/
extern Gamebuino gb;
/* **************************************
* Global Prototypes *
* **************************************/
void SystemInit(void);
#endif /* SYSTEM_H__ */
|