blob: 045924383711cd1c25736c2dc4a114480eaa4dd7 (
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
|
#ifndef SYSTEM_H__
#define SYSTEM_H__
/* **************************************
* Includes *
* **************************************/
#include <Gamebuino.h>
/* **************************************
* Defines *
* **************************************/
/* **************************************
* Structs and enums *
* **************************************/
/* **************************************
* Global Variables *
* **************************************/
/* Gamebuino object is only visible for
* and accessed by C++ source files. */
extern Gamebuino gb;
/* **************************************
* Global Prototypes *
* **************************************/
void SystemInit(void);
#endif /* SYSTEM_H__ */
|