16 lines
204 B
C++
16 lines
204 B
C++
#ifndef LOTOSTATEK_PLAYER_H
|
|
#define LOTOSTATEK_PLAYER_H
|
|
|
|
|
|
#include "Actor.h"
|
|
|
|
class Player : public Actor {
|
|
public:
|
|
Player(int x, int y, std::string path);
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
#endif //LOTOSTATEK_PLAYER_H
|