This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Befunge.Net/Befunge/Interpreter/IStepInterpreter.cs
2016-10-13 19:52:31 -04:00

16 lines
355 B
C#

using System;
using System.ComponentModel;
using System.Threading.Tasks;
namespace Befunge.Interpreter
{
public interface StepInterpreter : INotifyPropertyChanged
{
IVec2 InstructionPointerPosition { get; }
string Output { get; }
Func<string> InputRequest { get; set; }
int? Step();
int Run ();
}
}