123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using NTERA.Core;
- using NTERA.EmuEra.Game.EraEmu.Content;
- namespace NTERA.Interpreter
- {
- public class Engine : IScriptEngine
- {
- public bool Initialize(IConsole console)
- {
- throw new NotImplementedException();
- }
- public void Start()
- {
- throw new NotImplementedException();
- }
- public void InputString(string input)
- {
- throw new NotImplementedException();
- }
- public void InputInteger(long input)
- {
- throw new NotImplementedException();
- }
- public void InputSystemInteger(long input)
- {
- throw new NotImplementedException();
- }
- public CroppedImage GetImage(string name)
- {
- throw new NotImplementedException();
- }
- }
- }
|