Esempio n. 1
0
 public void OnCommandReceived(Commands.ILogicOutputCommand effect)
 {
     for (int i = 0; i < sub_views.Count; ++i)
     {
         sub_views[i].OnCommandReceived(effect);
     }
 }
Esempio n. 2
0
        private void OnOutputCommandReceived(Commands.ILogicOutputCommand command)
        {
            if (logic_view == null)
            {
                return;
            }

            logic_view.OnCommandReceived(command);
        }
Esempio n. 3
0
        protected void SendOutput(Commands.ILogicOutputCommand output)
        {
            if (match_data == null)
            {
                return;
            }

            if (output == null)
            {
                return;
            }

            on_output_command_sent.Invoke(output);
        }
Esempio n. 4
0
 public virtual void OnCommandReceived(Commands.ILogicOutputCommand command)
 {
 }