Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Gameengine.h@4:b92da6a09c8b, 2019-03-21 (annotated)
- Committer:
- el17arm
- Date:
- Thu Mar 21 21:29:11 2019 +0000
- Revision:
- 4:b92da6a09c8b
- Child:
- 14:dc3524d11921
committing as attempting to create a level larger than the playing screen to see how feasible this might be
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| el17arm | 4:b92da6a09c8b | 1 | /*#ifndef GAMEERENGINE_H |
| el17arm | 4:b92da6a09c8b | 2 | #define GAMEERENGINE_H |
| el17arm | 4:b92da6a09c8b | 3 | |
| el17arm | 4:b92da6a09c8b | 4 | #include "mbed.h" |
| el17arm | 4:b92da6a09c8b | 5 | #include "N5110.h" |
| el17arm | 4:b92da6a09c8b | 6 | #include "Gamepad.h" |
| el17arm | 4:b92da6a09c8b | 7 | #include "Minerengine.h" |
| el17arm | 4:b92da6a09c8b | 8 | #include "Levelengine.h" |
| el17arm | 4:b92da6a09c8b | 9 | |
| el17arm | 4:b92da6a09c8b | 10 | class Gameengine |
| el17arm | 4:b92da6a09c8b | 11 | { |
| el17arm | 4:b92da6a09c8b | 12 | |
| el17arm | 4:b92da6a09c8b | 13 | public: |
| el17arm | 4:b92da6a09c8b | 14 | |
| el17arm | 4:b92da6a09c8b | 15 | Gameengine(); |
| el17arm | 4:b92da6a09c8b | 16 | ~Gameengine(); |
| el17arm | 4:b92da6a09c8b | 17 | |
| el17arm | 4:b92da6a09c8b | 18 | private: |
| el17arm | 4:b92da6a09c8b | 19 | |
| el17arm | 4:b92da6a09c8b | 20 | |
| el17arm | 4:b92da6a09c8b | 21 | |
| el17arm | 4:b92da6a09c8b | 22 | }; |
| el17arm | 4:b92da6a09c8b | 23 | |
| el17arm | 4:b92da6a09c8b | 24 | #endif |
| el17arm | 4:b92da6a09c8b | 25 | */ |