rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
17 lines (16 loc) • 605 B
TypeScript
import { type IWorldManager, type IWorldTime } from "../common";
import { WeatherTypeEnum } from "../../../shared/common/world";
export declare class MockWorldManager implements IWorldManager {
private readonly _time;
private _weather;
constructor();
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;
}