예제 #1
0
 public ProjectileExplodedEventArgs(Projectile projectile, BaseGameObject target)
 {
     this.Projectile = projectile;
     this.Target = target;
 }
예제 #2
0
파일: Wind.cs 프로젝트: kindohm/tanks
 public void Blow(BaseGameObject item)
 {
     item.Body.ApplyForce(ref this.direction);
 }