summaryrefslogtreecommitdiff
path: root/player.h
blob: 0f008769779741eeeb45acfc82736cf0030bdca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _PLAYER_H_
#define _PLAYER_H_

#include "texture.h"

class Player {
	public:
		float x, y, move_factor, focus_factor;
		Texture *texture;

		Player();
		void draw();
		void update();
};

#endif