using ColdMint.scripts.map.interfaces; using Godot; namespace ColdMint.scripts.map.dateBean; /// /// Room placement information /// 房间放置信息 /// public class RoomPlacementData { /// /// the location of placement /// 放置的位置 /// public Vector2? Position { get; set; } /// /// Place the room template /// 放置的房间模板 /// public IRoom? Room { get; set; } }