diff --git a/Ports/IBasePort.cs b/Ports/IBasePort.cs index d856a7c..6b68b6a 100644 --- a/Ports/IBasePort.cs +++ b/Ports/IBasePort.cs @@ -1,6 +1,11 @@ +using Godot; + namespace Enigmos.Ports; public interface IBasePort { + Vector2 PositionToBoard(); + int Condition { get; set; } + int Quality { get; set; } -} \ No newline at end of file +}