示例#1
0
        public Quarters None()
        {
            Quarters none = new Quarters
            {
                Type = "-Select Quarters-"
            };

            return(none);
        }
示例#2
0
        public Quarters Luxurious()
        {
            Quarters luxurious = new Quarters
            {
                Type   = "Luxurious",
                BpCost = 5
            };

            return(luxurious);
        }
示例#3
0
        public Quarters Good()
        {
            Quarters good = new Quarters
            {
                Type   = "Good",
                BpCost = 2
            };

            return(good);
        }
示例#4
0
        public Quarters Common()
        {
            Quarters common = new Quarters
            {
                Type   = "Common",
                BpCost = 0
            };

            return(common);
        }