コード例 #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);
 }