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.
lib/GameEngine/GameEngine.h
- Committer:
- Kern_EL17KJTF
- Date:
- 2019-05-07
- Revision:
- 11:b288d01533cc
- Parent:
- 10:28575a6eaa13
- Child:
- 12:50a7abf21f18
File content as of revision 11:b288d01533cc:
#ifndef GAMEENGINE_H #define GAMEENGINE_H /* ELEC2645 Project GameEngine.h Class file for GameEngine in Donkey Kong game. */ #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "Barrel.h" #include "Banana.h" #include "Donkey.h" class GameEngine { public: GameEngine(); ~GameEngine(); void gameengine_run(Gamepad &pad,N5110 &lcd,Barrel &barrel,Banana &banana,Donkey &dky); }; #endif