12 lines
169 B
C#
12 lines
169 B
C#
using Godot;
|
|
|
|
namespace Enigmos.Ports;
|
|
|
|
public interface IBasePort
|
|
{
|
|
Vector2 PositionToBoard();
|
|
int Condition { get; set; }
|
|
int Quality { get; set; }
|
|
|
|
}
|