about summary refs log tree commit diff
path: root/src/game/client/components/controls.hpp
blob: e33d24f5bb29ce45ce0a1056012637e1dfcc8b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <base/vmath.hpp>
#include <game/client/component.hpp>

class CONTROLS : public COMPONENT
{	
public:
	vec2 mouse_pos;
	vec2 target_pos;

	NETOBJ_PLAYER_INPUT input_data;
	int input_direction_left;
	int input_direction_right;

	CONTROLS();
	
	virtual void on_render();
	virtual void on_message(int msg, void *rawmsg);
	virtual bool on_mousemove(float x, float y);
	virtual void on_console_init();
	
	int snapinput(int *data);
};