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) • 368 B
TypeScript
import { type IWorldManager, type IWorldTime } from "../common";
import { type WeatherTypeEnum } from "../../../shared/common/world";
export declare class AltVWorldManager implements IWorldManager {
get time(): IWorldTime;
get weather(): WeatherTypeEnum;
setTimeHour(): void;
setTimeMinute(): void;
setTimeSecond(): void;
setWeather(): void;
}