Created
April 3, 2017 19:36
-
-
Save PoetaKodu/f10442bb90deda913c61b4f087250511 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CPlayer | |
: public IPawn | |
{ | |
sf::Sprite m_sprite; | |
public: | |
CPlayer(); | |
virtual void SetLocation(const grim::Vector2 &location) override; | |
virtual void Draw() override; | |
void SetMoveSpeed(const float &moveSpeed); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment