Engine.cs 676 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using NTERA.Core;
  3. using NTERA.EmuEra.Game.EraEmu.Content;
  4. namespace NTERA.Interpreter
  5. {
  6. public class Engine : IScriptEngine
  7. {
  8. public bool Initialize(IConsole console)
  9. {
  10. throw new NotImplementedException();
  11. }
  12. public void Start()
  13. {
  14. throw new NotImplementedException();
  15. }
  16. public void InputString(string input)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public void InputInteger(long input)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. public void InputSystemInteger(long input)
  25. {
  26. throw new NotImplementedException();
  27. }
  28. public CroppedImage GetImage(string name)
  29. {
  30. throw new NotImplementedException();
  31. }
  32. }
  33. }