mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
20 lines
350 B
C++
20 lines
350 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 bool on_mousemove(float x, float y);
|
||
|
virtual void on_init();
|
||
|
|
||
|
int snapinput(int *data);
|
||
|
};
|