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/Donkey/Donkey.h
- Committer:
- Kern_EL17KJTF
- Date:
- 2019-05-08
- Revision:
- 13:94abfe83a294
- Parent:
- 11:b288d01533cc
- Child:
- 20:c4e6941c98e2
File content as of revision 13:94abfe83a294:
/* ELEC2645 Project Donkey.h Class file for Donkey Kong in Donkey Kong game. */ #ifndef DONKEY_H #define DONKEY_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" extern int donkeykong_x; extern int donkeykong_y; extern int donkey_kong_speed; extern int donkey_direction; class Donkey { public: Donkey(); ~Donkey(); void donkey_init(); void donkeykong_movement(Gamepad &pad, N5110 &lcd); }; #endif