protected virtual void OnReceiveInput(Input input) { Action<Input> handler = this.ReceiveInput; if (handler != null) handler(input); }
private void OnSendInput(Input input) { Action<Input> handler = this.SendInput; if (handler != null) handler(input); }
internal void DoReceiveInput(Input input) { this.OnReceiveInput(input); }