
Zirui Chen 201235448
Dependencies: mbed
Diff: Board/Board.h
- Revision:
- 5:7207c9b70108
- Child:
- 6:b393cfe4e0a7
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Board/Board.h Wed May 27 21:13:59 2020 +0000 @@ -0,0 +1,33 @@ +#ifndef BOARD_H +#define BOARD_H + +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" +#include "Bullet.h" + +class Board +{ +public: + + Board(); + ~Board(); + void init(int x,int y,int height,int width,N5110 &lcd); + void draw(N5110 &lcd); + void update(Direction d,float mag,N5110 &lcd); + void add_score(); + int get_score(); + Vector2D get_pos(); + +private: + + int _height; + int _width; + int _x; + int _y; + int _speed; + int _score; + //bullet _bullet; + +}; +#endif \ No newline at end of file