/// <summary>
 /// 가속도를 Bullet에 적용합니다.
 /// </summary>
 public override void Apply(Bullet bullet)
 {
     bullet.ApplyAcceleration(Acceleration);
 }