示例#1
0
        public Room(int i, string n, ConsoleColor c, MoveOut father)

        {
            id = i;

            name          = n;
            fatherMoveOut = father;
            color         = c;

            boxes = new List <Box>();
        }
示例#2
0
        [JsonConstructor] public Room(int i, string n, ConsoleColor c, List <Box> l, MoveOut father)

        {
            id = i;

            name          = n;
            fatherMoveOut = father;
            color         = c;

            boxes = l;
        }
示例#3
0
 public Load(User me, MoveOut mi)
 {
     usr     = me;
     moveOut = mi;
 }