summaryrefslogtreecommitdiffhomepage
path: root/include/rodeo/input.h
blob: 1f89b8c64b2a0c97d41eae643088e69e14e49dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

// -- internal --
// public
#include "rodeo/input_t.h"

bool
rodeo_input_events_poll(void);

void
rodeo_input_scene_activate(
	rodeo_input_scene_t *scene
);

void
rodeo_input_scene_deactivate(
	rodeo_input_scene_t *scene
);

void
rodeo_input_scene_register_callback(
	rodeo_input_callback_function func,
	rodeo_input_scene_t *scene,
	rodeo_input_register_type_t type
);

void
rodeo_input_scene_unregister_callback(
	rodeo_input_callback_function func,
	rodeo_input_scene_t *scene,
	rodeo_input_register_type_t type
);