From f24850d443beea2430fb1544fbd8dab4efc47f05 Mon Sep 17 00:00:00 2001 From: hzhang Date: Fri, 28 Jun 2024 21:55:04 +0800 Subject: [PATCH] rename chip to module --- Ports/IBasePort.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 +}