rj-action-library/Runtime/UI/Nodes/UIHoverable.cs

12 lines
161 B
C#
Raw Normal View History

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