IScriptEngine.cs 227 B

123456789101112
  1. namespace NTERA.Core
  2. {
  3. public interface IScriptEngine
  4. {
  5. bool Initialize(IConsole console);
  6. void Start();
  7. void InputString(string input);
  8. void InputInteger(long input);
  9. void InputSystemInteger(long input);
  10. }
  11. }