using Godot; public interface ITileDraggable { Vector2I TilePosition { get; set; } bool Draggable { get; set; } bool IsCollided { get; set; } Rect2I TileRect { get; } Vector2I MouseOffset { get; } }