コード例 #1
0
ファイル: Bullet.cs プロジェクト: NXLuan/Megaman
 public Bullet(float x, float y, float width, float height, float mass, int damage, GameWorld gameWorld) : base(x, y, width, height, mass, 1, gameWorld)
 {
     setDamage(damage);
 }
コード例 #2
0
 public Camera(float x, float y, float widthView, float heightView, GameWorld gameWorld) : base(x, y, gameWorld)
 {
     this.widthView  = widthView;
     this.heightView = heightView;
 }