rokojori_action_library/Runtime/UI/Nodes/UIHoverable.cs

13 lines
188 B
C#
Raw Normal View History

2025-06-19 17:22:25 +00:00
using Godot;
using Rokojori;
using System.Collections.Generic;
2026-05-22 12:25:02 +00:00
using Rokojori.Extensions;
2025-06-19 17:22:25 +00:00
namespace Rokojori
{
public interface UIHoverable
{
public void SetUnhovered();
}
}