This commit is contained in:
h z
2024-06-28 20:46:30 +08:00
commit 36d98438e2
7 changed files with 62 additions and 0 deletions

9
Modules/IBaseModule.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace Enigmos.Modules;
using Godot;
public interface IBaseModule
{
Vector2 Size { get; set; }
Vector2 Position { get; set; }
Vector2 PositionToBoard { get; }
bool Draggable { get; }
}