Files
cell/source/input.h
2024-11-05 14:42:21 -06:00

18 lines
401 B
C

#ifndef INPUT_H
#define INPUT_H
#include "script.h"
#include <stdint.h>
#include "HandmadeMath.h"
#include "sokol_app.h"
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);
void input_dropped_files(int n);
void input_clipboard_paste(char *str);
#endif