Exemplo n.º 1
0
 public PluginExample()
 {
     this.cmdMan = new CommandManager();
     Engine engine = new Engine();
     this.cmdMan.CommandExecuters.Add(new FactorialCommandExecuter(engine));
     this.cmdMan.CommandExecuters.Add(new StatusCommandExecuter(engine));
     this.gui = new FrmPluginExample();
 }
Exemplo n.º 2
0
        public PluginExample()
        {
            this.cmdMan = new CommandManager();
            Engine engine = new Engine();

            this.cmdMan.CommandExecuters.Add(new FactorialCommandExecuter(engine));
            this.cmdMan.CommandExecuters.Add(new StatusCommandExecuter(engine));
            this.gui = new FrmPluginExample();
        }