You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
662 B

namespace ET
{
public class Constant
{
public static class ConstStructureSpecialType
{
public const int KITCHEN = 4;//厨房
}
public static class ConstSynthesisMixtureType
{
public const int BUILDING = 1;//建筑
public const int MATERIAL = 2;//材料
public const int FOOD = 3;//菜品
public const int MEDICINE = 4;//药品
}
public static class ConstMenuState
{
public const int NOT_FULL = 1;//未满
public const int FULL = 2;//已满
}
public const int NORMAL_FOOD = 3001;
}
}