Simplified Input Sender
unknown
csharp
3 years ago
150 B
27
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);
}