示例#1
0
 protected virtual void OnReceiveInput(Input input)
 {
     Action<Input> handler = this.ReceiveInput;
     if (handler != null) handler(input);
 }
示例#2
0
 private void OnSendInput(Input input)
 {
     Action<Input> handler = this.SendInput;
     if (handler != null) handler(input);
 }
示例#3
0
 internal void DoReceiveInput(Input input)
 {
     this.OnReceiveInput(input);
 }