Example #1
0
 public BlueprintDamage(BlueprintDamageType type, short tileX, short tileY, sbyte level)
 {
     this.Type  = type;
     this.TileX = tileX;
     this.TileY = tileY;
     this.Level = level;
 }
Example #2
0
 public BlueprintDamage(BlueprintDamageType type, short tileX, short tileY, sbyte level, WorldComponent component)
 {
     this.Type      = type;
     this.TileX     = tileX;
     this.TileY     = tileY;
     this.Level     = level;
     this.Component = component;
 }
Example #3
0
 public BlueprintDamage(BlueprintDamageType type)
 {
     this.Type = type;
 }
Example #4
0
 public BlueprintDamage(BlueprintDamageType type, short tileX, short tileY, sbyte level)
 {
     this.Type = type;
     this.TileX = tileX;
     this.TileY = tileY;
     this.Level = level;
 }
Example #5
0
 public BlueprintDamage(BlueprintDamageType type, short tileX, short tileY, sbyte level, WorldComponent component)
 {
     this.Type = type;
     this.TileX = tileX;
     this.TileY = tileY;
     this.Level = level;
     this.Component = component;
 }
Example #6
0
 public BlueprintDamage(BlueprintDamageType type)
 {
     this.Type = type;
 }