Fumofumotris/rewrite/c/input.c

9 lines
100 B
C
Raw Normal View History

2024-05-24 05:36:13 +00:00
#include "input.h"
void *input_worker(void *hand_arg)
{
while(true) {
PlatformReadInput();
}
}