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) • 1.41 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VehicleSeat = void 0;
var VehicleSeat;
(function (VehicleSeat) {
VehicleSeat[VehicleSeat["NONE"] = 255] = "NONE";
VehicleSeat[VehicleSeat["DRIVER"] = 256] = "DRIVER";
VehicleSeat[VehicleSeat["PASSENGER_1"] = 257] = "PASSENGER_1";
VehicleSeat[VehicleSeat["PASSENGER_2"] = 258] = "PASSENGER_2";
VehicleSeat[VehicleSeat["PASSENGER_3"] = 259] = "PASSENGER_3";
VehicleSeat[VehicleSeat["PASSENGER_4"] = 260] = "PASSENGER_4";
VehicleSeat[VehicleSeat["PASSENGER_5"] = 261] = "PASSENGER_5";
VehicleSeat[VehicleSeat["PASSENGER_6"] = 262] = "PASSENGER_6";
VehicleSeat[VehicleSeat["PASSENGER_7"] = 263] = "PASSENGER_7";
VehicleSeat[VehicleSeat["PASSENGER_8"] = 264] = "PASSENGER_8";
VehicleSeat[VehicleSeat["PASSENGER_9"] = 265] = "PASSENGER_9";
VehicleSeat[VehicleSeat["PASSENGER_10"] = 266] = "PASSENGER_10";
VehicleSeat[VehicleSeat["PASSENGER_11"] = 267] = "PASSENGER_11";
VehicleSeat[VehicleSeat["PASSENGER_12"] = 268] = "PASSENGER_12";
VehicleSeat[VehicleSeat["PASSENGER_13"] = 269] = "PASSENGER_13";
VehicleSeat[VehicleSeat["PASSENGER_14"] = 270] = "PASSENGER_14";
VehicleSeat[VehicleSeat["PASSENGER_15"] = 271] = "PASSENGER_15";
VehicleSeat[VehicleSeat["PASSENGER_16"] = 272] = "PASSENGER_16";
})(VehicleSeat || (exports.VehicleSeat = VehicleSeat = {}));