public static void InvokeGotHit()
 {
     GotHit?.Invoke();
 }
 protected void invokeGotHitEvent()
 {
     GotHit?.Invoke(this, new EventArgs());
 }