Ejemplo n.º 1
0
 public RoomItem(ushort graphicID, RoomItemtype type, ushort locationX, ushort locationY, ushort locationZ = 0)
 {
     this.GraphicID = graphicID;
     this.LocationX = locationX;
     this.LocationY = locationY;
     this.LocationZ = locationZ;
     this.ItemType  = type;
 }
Ejemplo n.º 2
0
 public RoomItem() // Sets Defaults
 {
     this.GraphicID = 0;
     this.LocationX = 0;
     this.LocationY = 0;
     this.LocationZ = 0;
     this.ItemType  = RoomItemtype.NonInteractive;
 }