Fumofumotris/rewrite/c/input.c
2024-05-24 00:36:13 -05:00

9 lines
100 B
C

#include "input.h"
void *input_worker(void *hand_arg)
{
while(true) {
PlatformReadInput();
}
}