rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
14 lines (13 loc) • 541 B
TypeScript
import { type IWorldManager, type IWorldTime } from "../common";
import type { WeatherTypeEnum } from "../../../shared/common/world";
export declare class RageWorldManager implements IWorldManager {
get time(): IWorldTime;
get weather(): WeatherTypeEnum;
setTimeHour(value: number): void;
setTimeMinute(value: number): void;
setTimeSecond(value: number): void;
setWeather(value: WeatherTypeEnum): void;
private static _normalizeHours;
private static _normalizeMinutes;
private static _normalizeSeconds;
}