lots done
This commit is contained in:
parent
1ba7c39c30
commit
fbd0ba445a
59 changed files with 6074 additions and 3598 deletions
17
src/Roboto.Core/IInputController.cs
Normal file
17
src/Roboto.Core/IInputController.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
namespace Roboto.Core;
|
||||
|
||||
public interface IInputController
|
||||
{
|
||||
bool IsInitialized { get; }
|
||||
void KeyDown(ushort scanCode);
|
||||
void KeyUp(ushort scanCode);
|
||||
void KeyPress(ushort scanCode, int holdMs = 50);
|
||||
void MouseMoveTo(int x, int y);
|
||||
void MouseMoveBy(int dx, int dy);
|
||||
void LeftClick(int x, int y);
|
||||
void RightClick(int x, int y);
|
||||
void LeftDown();
|
||||
void LeftUp();
|
||||
void RightDown();
|
||||
void RightUp();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue