mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 20:05:03 -05:00
10 lines
195 B
PHP
10 lines
195 B
PHP
|
procedure MoveMouse(x, y: integer);
|
||
|
begin
|
||
|
CurrThread.Client.MInput.SetMousePos(X, Y);
|
||
|
end;
|
||
|
|
||
|
procedure GetMousePos(var x, y: integer);
|
||
|
begin
|
||
|
CurrThread.Client.MInput.GetMousePos(X, Y);
|
||
|
end;
|