public BaseUpdateStreamHitEvent(HitTarget tankHit, Tanks.Battle.ClientCore.API.StaticHit staticHit)
 {
     this.TankHit   = tankHit;
     this.StaticHit = staticHit;
 }
 public SendHitToServerEvent(Tanks.Battle.ClientCore.API.TargetingData targetingData, List <HitTarget> targets, Tanks.Battle.ClientCore.API.StaticHit staticHit)
 {
     this.TargetingData = targetingData;
     this.Targets       = targets;
     this.StaticHit     = staticHit;
 }
Beispiel #3
0
 public SelfSplashHitEvent(List <HitTarget> targets, StaticHit staticHit, List <HitTarget> splashTargets) : base(targets, staticHit)
 {
     this.SplashTargets = splashTargets;
 }
Beispiel #4
0
 public SelfHitEvent(List <HitTarget> targets, StaticHit staticHit) : base(targets, staticHit)
 {
 }
 public SelfShaftAimingHitEvent(List <HitTarget> targets, StaticHit staticHit) : base(targets, staticHit)
 {
 }