// 弾を撃つ
 private void Shot(Vector2F velocity)
 {
     // 敵弾を画面に追加
     Parent.AddChildNode(new EnemyBullet(Position, velocity));
 }