Simplified Input Sender
unknown
csharp
2 years ago
150 B
7
Indexable
static extern uint SendInput (
uint inputs, ref INPUT pInputs, int cbSize
);
//main loop
while(running) {
SendInput(STUFF);
}
Editor is loading...
static extern uint SendInput (
uint inputs, ref INPUT pInputs, int cbSize
);
//main loop
while(running) {
SendInput(STUFF);
}