예제 #1
0
 public void OnCommandReceived(Commands.ILogicOutputCommand effect)
 {
     for (int i = 0; i < sub_views.Count; ++i)
     {
         sub_views[i].OnCommandReceived(effect);
     }
 }
예제 #2
0
파일: LogicHub.cs 프로젝트: Guillemsc/Fast
        private void OnOutputCommandReceived(Commands.ILogicOutputCommand command)
        {
            if (logic_view == null)
            {
                return;
            }

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

            if (output == null)
            {
                return;
            }

            on_output_command_sent.Invoke(output);
        }
예제 #4
0
 public virtual void OnCommandReceived(Commands.ILogicOutputCommand command)
 {
 }