public StateChainsPluginControl(IGlueCommands glueCommands)
        {
            InitializeComponent();
            _glueCommands = glueCommands;

            lbStateChains.DataSource = _stateChainsSource;

            lbStates.DataSource = _stateChainStatesSource;
        }
        public StateChainsPluginControl(IGlueCommands glueCommands)
        {
            InitializeComponent();
            _glueCommands = glueCommands;

            lbStateChains.DataSource = _stateChainsSource;

            lbStates.DataSource = _stateChainStatesSource;
        }
Esempio n. 3
0
 public GlueViewRemotingInteractiveInterfaceManager(IGlueCommands glueCommands, IGlueState glueState)
     : base(8686, new InteractiveInterface(glueCommands, glueState))
 {
 }
 public InteractiveInterface(IGlueCommands glueCommands, IGlueState glueState)
 {
     _glueCommands = glueCommands;
     _glueState = glueState;
 }
Esempio n. 5
0
 public InteractiveInterface(IGlueCommands glueCommands, IGlueState glueState)
 {
     _glueCommands = glueCommands;
     _glueState    = glueState;
 }
Esempio n. 6
0
 public LevelEditorRemotingInteractiveInterfaceManager(IGlueCommands glueCommands, IGlueState glueState)
     : base(9426, new InteractiveInterface(glueCommands, glueState))
 {
 }