ELEC2645 (2019/20)
/
ELEC2645_Project_el18jb
test 1 doc
Player/Player.h
- Committer:
- joebarhouch
- Date:
- 2020-05-27
- Revision:
- 11:b3024ab59fa5
- Parent:
- 9:9830d3a78572
- Child:
- 14:58887d7e1072
File content as of revision 11:b3024ab59fa5:
#ifndef PLAYER_H #define PLAYER_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "Bitmap.h" class Player { public: Player(); ~Player(); void init(int x, int y); //bool health; //bool is_jumping(); void draw(N5110 &lcd); bool floorCollide(); void update(Direction d, float mag, int Ypos, bool fall, bool jump); Vector2D get_pos(); private: int _vx; int _vy; int _playerX; int _playerY; bool _floorCollision; char _dir; Timer t; bool f; }; #endif