示例#1
0
 public CraftableStoneHouseDoor(DoorType type, DoorFacing facing)
     : base(facing, 0x324 + (2 * (int)facing), 0x325 + (2 * (int)facing), 0xED, 0xF4, GetOffset(facing))
 {
     Type    = type;
     Movable = true;
 }
示例#2
0
 public CraftableMetalHouseDoor(DoorType type, DoorFacing facing)
     : base(facing)
 {
     Type    = type;
     Movable = true;
 }
示例#3
0
 public CraftableStoneHouseDoor(DoorType type, DoorFacing facing)
     : base(facing, 0x324 + (2 * (int)facing), 0x325 + (2 * (int)facing), 0xED, 0xF4, BaseDoor.GetOffset(facing))
 {
     this.Type = type;
 }
示例#4
0
 public CraftableHouseDoorDeed(DoorType type)
     : base(0x14F0)
 {
     Type = type;
 }
示例#5
0
 public CraftableMetalHouseDoor(DoorType type, DoorFacing facing)
     : base(facing)
 {
     this.Type = type;
 }