9 lines
100 B
C
9 lines
100 B
C
|
#include "input.h"
|
||
|
|
||
|
|
||
|
void *input_worker(void *hand_arg)
|
||
|
{
|
||
|
while(true) {
|
||
|
PlatformReadInput();
|
||
|
}
|
||
|
}
|