コード例 #1
0
ファイル: Enemy.cs プロジェクト: adam0724/Battle_Tanks
 public Enemy(Point pos, float speed, eDir dir, int hitPoints, Weapon weapon)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Vehicle.cs プロジェクト: adam0724/Battle_Tanks
 public void setWeapon(Weapon weap)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: Player.cs プロジェクト: adam0724/Battle_Tanks
 public Player(int ID, Point pos, float speed, eDir dir, int hitPoints, Weapon weapon)
 {
     throw new NotImplementedException();
 }