feat: decorating the backroom #604

Merged
Sainan merged 4 commits from tailorshop into main 2024-12-22 11:32:19 -08:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 357f909569 - Show all commits

View File

@ -1,9 +1,9 @@
import { IApartment, IRooms, IPlacedDecosDatabase, TBootLocation } from "@/src/types/shipTypes";
import { IApartment, IRoom, IPlacedDecosDatabase, TBootLocation } from "@/src/types/shipTypes";
import { Model, Types } from "mongoose";
export interface IOrbiter {
Features: string[];
Rooms: IRooms[];
Rooms: IRoom[];
ContentUrlSignature: string;
BootLocation?: TBootLocation;
}

View File

@ -26,7 +26,7 @@ export interface IShip {
Features: string[];
ShipId: IOid;
ShipInterior: IShipInterior;
Rooms: IRooms[];
Rooms: IRoom[];
ContentUrlSignature: string;
BootLocation?: TBootLocation;
}
@ -41,7 +41,7 @@ export interface IShipDatabase {
SkinFlavourItem?: string;
}
export interface IRooms {
export interface IRoom {
Name: string;
MaxCapacity: number;
PlacedDecos?: IPlacedDecosDatabase[];
@ -62,7 +62,7 @@ export interface IGardening {
}
export interface IApartment {
Gardening: IGardening;
Rooms: IRooms[];
Rooms: IRoom[];
FavouriteLoadouts: string[];
}