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/IVec2.cs
2016-10-13 19:52:31 -04:00

16 lines
379 B
C#

using System.CodeDom;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Security.Cryptography.X509Certificates;
namespace Befunge.Interpreter
{
public interface IVec2 : INotifyPropertyChanged
{
int X { get; set; }
int Y { get; set; }
int ToIndex(string text);
void FromIndex(string text, int i);
}
}