Пример #1
0
 private void HandleFocusEnd(GameEvent_FocusEnd ev)
 {
     if (this.Parent != ev.ExecutorEntity)
     {
         throw new InvalidOperationException("Why is a focus end being broadcast to the wrong entity?");
     }
     this.currentAP = 0;
 }
Пример #2
0
 private void HandleFocusEnd(GameEvent_FocusEnd ev)
 {
     this.InFocus = false;
     ev.Completed = true;
 }