コード例 #1
0
 public ExplosiveObject(Vector2 position, Animation animation, int power, GameSection gameSection)
     : base(position, animation)
 {
     _gameSection = gameSection;
     _power       = power;
 }
コード例 #2
0
ファイル: Bazooka.cs プロジェクト: anhlehoang410/Game-2
 public Bazooka(Vector2 position, Animation animation, int power, GameSection gameSection)
     : base(position, animation, power, gameSection)
 {
 }
コード例 #3
0
ファイル: Bazooka.cs プロジェクト: anhlehoang410/Game-2
 public Bazooka(Vector2 position, Animation animation, int power, GameSection gameSection)
     : base(position, animation, power, gameSection)
 {
 }
コード例 #4
0
 public ExplosiveObject(Vector2 position, Animation animation, int power, GameSection gameSection)
     : base(position, animation)
 {
     _gameSection = gameSection;
     _power = power;
 }