rename chip to module

This commit is contained in:
h z
2024-06-28 21:55:04 +08:00
parent 36d98438e2
commit f24850d443

View File

@@ -1,6 +1,11 @@
using Godot;
namespace Enigmos.Ports;
public interface IBasePort
{
Vector2 PositionToBoard();
int Condition { get; set; }
int Quality { get; set; }
}
}