]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - src/client/input.h
Implement node breaking
[dragonblocks_alpha.git] / src / client / input.h
1 #ifndef _INPUT_H_
2 #define _INPUT_H_
3
4 #include <stdbool.h>
5 #include "types.h"
6
7 void input_init();
8 void input_tick(f64 dtime);
9 void input_cursor(double current_x, double current_y);
10 void input_click(bool left);
11
12 #endif // _INPUT_H_