namespace Enigmos.Modules; using Godot; public interface IBaseModule { Vector2 Size { get; set; } Vector2 Position { get; set; } Vector2 PositionToBoard { get; } bool Draggable { get; } }