mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-14 05:15:16 -05:00
11 lines
163 B
PHP
11 lines
163 B
PHP
|
procedure GetClientDimensions(var w, h: integer);
|
||
|
begin
|
||
|
CurrThread.Client.MWindow.GetDimensions(w, h);
|
||
|
end;
|
||
|
|
||
|
procedure Wait(t: Integer);
|
||
|
begin
|
||
|
Sleep(t);
|
||
|
end;
|
||
|
|