mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 12:08:20 +00:00
23 lines
436 B
C++
23 lines
436 B
C++
#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);
|
|
};
|