コード例 #1
0
ファイル: Vehicle.cs プロジェクト: adam0724/Battle_Tanks
 protected Vehicle(Point pos, float speed, eDir dir, int hitPoints, Projectile weapon)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Engine.cs プロジェクト: adam0724/Battle_Tanks
 /// <summary>
 /// Metoda dodaj�ca pocisk do listy _Projectiles
 /// </summary>
 /// <param name="proj"></param>
 public void addProjectile(Projectile proj)
 {
     throw new NotImplementedException();
 }