Example #1
0
        public void PushInput(Commands.ILogicInputCommand input)
        {
            if (input == null)
            {
                return;
            }

            if (local_cluster != null)
            {
                local_cluster.ReceiveInput(input);
            }
        }
Example #2
0
        public void ReceiveInput(Commands.ILogicInputCommand input)
        {
            if (match_data == null)
            {
                return;
            }

            if (input == null)
            {
                return;
            }

            OnInputCommandReceived(input);
        }
Example #3
0
 public virtual void OnInputCommandReceived(Commands.ILogicInputCommand input)
 {
 }