Initial Commit
This commit is contained in:
16
Befunge/Interpreter/IStepInterpreter.cs
Normal file
16
Befunge/Interpreter/IStepInterpreter.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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 ();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user