IScriptEngine.cs 307 B

12345678910111213141516
  1. using NTERA.EmuEra.Game.EraEmu.Content;
  2. namespace NTERA.Core
  3. {
  4. public interface IScriptEngine
  5. {
  6. bool Initialize(IConsole console);
  7. void Start();
  8. void InputString(string input);
  9. void InputInteger(long input);
  10. void InputSystemInteger(long input);
  11. CroppedImage GetImage(string name);
  12. }
  13. }