9 lines
203 B
C#
9 lines
203 B
C#
namespace Enigmos.Modules;
|
|
using Godot;
|
|
public interface IBaseModule
|
|
{
|
|
Vector2 Size { get; set; }
|
|
Vector2 Position { get; set; }
|
|
Vector2 PositionToBoard { get; }
|
|
bool Draggable { get; }
|
|
} |