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.
Diff: Player/Player.h
- Revision:
- 3:b34685dbdb8d
- Child:
- 4:afbf3dd71403
diff -r b62e8be35a5d -r b34685dbdb8d Player/Player.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Player/Player.h Tue Apr 02 12:40:31 2019 +0000 @@ -0,0 +1,23 @@ +#ifndef PLAYER_H +#define PLAYER_H + +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" +#include "Bitmap.h" +#include "Sprite.h" + +#define GRAVITY 2 +/*Sprite Class*/ + +//extern N5110 lcd; + +class Player : public Sprite{ + +public: + Player(); + ~Player(); + update(Gamepad &pad); +}; + +#endif \ No newline at end of file