rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
25 lines (24 loc) • 566 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CCMPWorldManager = void 0;
class CCMPWorldManager {
get time() {
return ccmp.world.time;
}
get weather() {
return ccmp.world.weather;
}
setTimeHour(value) {
ccmp.world.hour = value;
}
setTimeMinute(value) {
ccmp.world.minute = value;
}
setTimeSecond(value) {
ccmp.world.second = value;
}
setWeather(value) {
ccmp.world.weather = value;
}
}
exports.CCMPWorldManager = CCMPWorldManager;