Player character library
PlayerChar.h
- Committer:
- isabelc
- Date:
- 2017-05-02
- Revision:
- 11:989df9be83dd
- Parent:
- 10:cfeef15cce27
- Child:
- 12:9bc551a4cab9
File content as of revision 11:989df9be83dd:
#ifndef PLAYERCHAR_H #define PLAYERCHAR_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "Bitmap.h" /** Player Character Class @brief Class containg bitmap for the player character. @brief Covers rendering the bitmap and charcter movement. @author Isabel Cousins @date 2nd May 2017 */ class PlayerChar{ public: void update(N5110 &lcd, Gamepad &pad); int getdex(); }; #endif