示例#1
0
 public override BattleUnit Create()
 {
     var unit = new Projectile();
     unit.Animations = Animations;
     return unit;
 }
示例#2
0
 protected void ProjectileHit(Projectile p)
 {
     if (p.Target != null)
         Simulation.Attack(p.Target, this);
 }