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