This commit is contained in:
2021-06-27 20:27:03 -05:00
commit cbd4520e12
42 changed files with 1836 additions and 0 deletions

14
RAGE/Time.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
/**
* Time Functions
* @public
* @noSelf
*/
declare namespace time {
function set_clock_time(hour: int, minute: int, second: int): void;
function get_clock_hours(): int;
function get_clock_minutes(): int;
function get_clock_seconds(): int;
}