Evaluate() публичный Метод

public Evaluate ( String command ) : void
command String
Результат void
Пример #1
0
 // Simply tell the interpreter to run each command
 public void Execute(List <String> arguments)
 {
     foreach (String Command in m_Commands)
     {
         m_Interpreter.Evaluate(Command);
     }
 }
Пример #2
0
        public Engine(IGame game)
        {
            _internalReference = this;
            _lock = new Object();
            m_Graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";
            m_SceneManager = new Graphical.SceneManager();
            m_TrashCompactor = new Tantric.Trash.TrashCompactor();
            m_Interpreter = new Tantric.Scripting.CommandInterpreter();
            m_Game = game;

            Scripting.QuantumLanguage.InitializeLanguage(m_Interpreter);
            m_Interpreter.Evaluate("EntryScript");
        }
Пример #3
0
        public Engine(IGame game)
        {
            _internalReference = this;
            _lock                 = new Object();
            m_Graphics            = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";
            m_SceneManager        = new Graphical.SceneManager();
            m_TrashCompactor      = new Tantric.Trash.TrashCompactor();
            m_Interpreter         = new Tantric.Scripting.CommandInterpreter();
            m_Game                = game;

            Scripting.QuantumLanguage.InitializeLanguage(m_Interpreter);
            m_Interpreter.Evaluate("EntryScript");
        }