FaceFile for D2

This commit is contained in:
2024-10-20 17:49:48 -07:00
parent 7b00fcaae8
commit 924bd14c31
12 changed files with 261 additions and 0 deletions

View File

@ -0,0 +1,10 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IFacePoint
{
public int Index { get; }
public int X { get; }
public int Y { get; }
}