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;
        }
Ejemplo n.º 3
0
 public GlueViewRemotingInteractiveInterfaceManager(IGlueCommands glueCommands, IGlueState glueState)
     : base(8686, new InteractiveInterface(glueCommands, glueState))
 {
 }
Ejemplo n.º 4
0
 public InteractiveInterface(IGlueCommands glueCommands, IGlueState glueState)
 {
     _glueCommands = glueCommands;
     _glueState = glueState;
 }
Ejemplo n.º 5
0
 public InteractiveInterface(IGlueCommands glueCommands, IGlueState glueState)
 {
     _glueCommands = glueCommands;
     _glueState    = glueState;
 }
Ejemplo n.º 6
0
 public LevelEditorRemotingInteractiveInterfaceManager(IGlueCommands glueCommands, IGlueState glueState)
     : base(9426, new InteractiveInterface(glueCommands, glueState))
 {
 }