2021-11-30 21:29:18 -06:00
|
|
|
#ifndef INPUT_H
|
|
|
|
#define INPUT_H
|
|
|
|
|
2023-05-12 13:22:05 -05:00
|
|
|
#include "script.h"
|
|
|
|
#include <stdint.h>
|
2023-12-22 11:50:03 -06:00
|
|
|
#include "HandmadeMath.h"
|
2024-03-12 09:01:52 -05:00
|
|
|
#include "sokol_app.h"
|
2022-12-19 18:15:38 -06:00
|
|
|
|
2024-03-12 09:01:52 -05:00
|
|
|
void touch_start(sapp_touchpoint *touch, int n);
|
|
|
|
void touch_move(sapp_touchpoint *touch, int n);
|
|
|
|
void touch_end(sapp_touchpoint *touch, int n);
|
|
|
|
void touch_cancelled(sapp_touchpoint *touch, int n);
|
2022-02-06 10:14:57 -06:00
|
|
|
|
2023-12-20 09:19:04 -06:00
|
|
|
void input_dropped_files(int n);
|
2024-03-12 09:01:52 -05:00
|
|
|
void input_clipboard_paste(char *str);
|
2023-12-20 09:19:04 -06:00
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
#endif
|