namespace ColdMint.scripts.map.interfaces;
public interface IRoomTemplate
{
///
/// The asset path of the room must be available
/// 必须可获得房间的资产路径
///
string RoomResPath { get; }
///
/// Whether this room template can still be used
/// 这个房间模板是否还能使用
///
bool CanUse { get; }
///
/// The maximum number of times a room template is used
/// 房间模板的最大使用次数
///
int MaxNumber { get; set; }
///
/// AddUsedNumber
/// 添加使用次数
///
void AddUsedNumber();
///
/// Times used
/// 已使用次数
///
int UsedNumber { get; }
}