예제 #1
0
 public DRoom(DRoom room)
 {
     d_ID       = room.d_ID;
     d_Size     = new DSizeN(room.d_Size.d_nWidth, room.d_Size.d_nHeight);
     d_DoorList = new LinkedList <DDoor>();
     foreach (DDoor _door in room.d_DoorList)
     {
         d_DoorList.AddLast(new DDoor(_door));
     }
 }
예제 #2
0
 public Stage(int width, int height)
 {
     m_Size = new DSizeN(width, height);
     m_Data = new DCell[width * height];
 }
예제 #3
0
 public DRoomPreset(int width, int height)
 {
     d_Size = new DSizeN(width, height);
     d_Data = new DCell[width * height];
 }