コード例 #1
0
ファイル: Bullet.cs プロジェクト: W0dan/CaveDwellers
 public Bullet(ICanShootAProjectile firedBy, double direction)
     : base(firedBy, direction)
 {
 }
コード例 #2
0
ファイル: Projectile.cs プロジェクト: W0dan/CaveDwellers
 protected Projectile(ICanShootAProjectile firedBy, double direction)
 {
     _firedBy = firedBy;
     _direction = direction;
 }