|
Public Member Functions |
|
void | go (void) |
| | Gets everything on the screen, and then goes to sleep, letting the interrupt handler update things appropriately.
|
|
void | updateDisplay (void) |
| | Updates the display.
|
Static Public Member Functions |
| Tutorial01Tile & | theApp (void) |
| | Mechanism to get ahold of the application. This ensures that both main and the interrupt handler can gain access to the same application object without having to resort to global variables and other evilness.
|
Private Member Functions |
| | Tutorial01Tile () |
| | Constructor prepares the application to run. To access an object, use theApp() to gain a reference to the application.
|
|
| Tutorial01Tile (const Tutorial01Tile &) |
| | Copy constructor is disabled.
|
|
Tutorial01Tile & | operator= (const Tutorial01Tile &) |
| | Operator= is disabled.
|
| virtual | ~Tutorial01Tile () |
| | Destructor never gets called because the application never ends.
|
| void | drawMap (u16 *map) |
| | Update the map to display the forest scene.
|