Player Library
Diff: Player.cpp
- Revision:
- 0:a88279bdf8c0
- Child:
- 1:933b7aa73bbc
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Player.cpp Mon Apr 24 08:51:58 2017 +0000 @@ -0,0 +1,21 @@ +#include Player.h + +Player::Player() +{ + +} + +Player::~Player() +{ + +} + + +void Player::draw(N5110 &lcd) +{ + int _sprite[3][3] = { + {1,0,1}, + {1,1,1}, + {1,1,1}}; + lcd.drawSprite(_x,_y,_rows,_cols,_sprite); +} \ No newline at end of file