21 lines
247 B
C++
21 lines
247 B
C++
#include "node.h"
|
|
#include "sprite.h"
|
|
|
|
#ifndef PLAYER_H
|
|
#define PLAYER_H
|
|
|
|
class Player : public Node {
|
|
private:
|
|
void Update() override;
|
|
void Move();
|
|
|
|
public:
|
|
Player();
|
|
~Player();
|
|
|
|
Sprite *sprite;
|
|
Sprite *hammer;
|
|
};
|
|
|
|
#endif
|