@bscotch/stitch
Version:
Stitch: The GameMaker Studio 2 Asset Pipeline Development Kit.
19 lines • 385 B
JavaScript
export class Gms2RoomOrder {
#data;
constructor(option) {
this.#data = { ...option };
}
get id() {
return this.#data.roomId;
}
get name() {
return this.#data.roomId.name;
}
get path() {
return this.#data.roomId.path;
}
toJSON() {
return { ...this.#data };
}
}
//# sourceMappingURL=Gms2RoomOrder.js.map