blob: 41f1928d589beee572c6bd04361b646c32849d50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _PLAYER_H_
#define _PLAYER_H_
#include "texture.h"
class Player {
protected:
float x, y, move_factor, focus_factor;
Texture *texture;
public:
Player();
void draw();
void update();
};
#endif
|