Early commits of my project
Dependencies: mbed Gamepad N5110
Diff: Sprites.h
- Revision:
- 6:6294bf4eafc8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Sprites.h Wed Mar 13 16:38:21 2019 +0000 @@ -0,0 +1,23 @@ +#ifndef SPRITES_H +#define SPRITES_H + +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" +#include "main.h" + +class Sprites +{ + +public: + + Sprites(); + ~Sprites(); + void miner_move(int x_direction, int y_direction); + +private: + + int x_direction; + int y_direction; +}; +#endif \ No newline at end of file