![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
N5110
Diff: Paddle/Paddle.h
- Revision:
- 0:90b7f20b3a8d
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Paddle/Paddle.h Tue Apr 28 01:39:30 2020 +0000 @@ -0,0 +1,31 @@ +#ifndef PADDLE_H +#define PADDLE_H + +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" + +class Paddle +{ +public: + + Paddle(); + ~Paddle(); + void init(int x,int height,int width); + void draw(N5110 &lcd); + void update(Direction d,float mag); + void add_score(); + int get_score(); + Vector2D get_pos(); + +private: + + int _height; + int _width; + int _x; + int _y; + int _speed; + int _score; + +}; +#endif \ No newline at end of file