Files
riversong-code-showcase/Source/Riversong/Game/UI/Panels/WorldUI/IWorldUIService.cs
2026-05-21 16:04:49 +02:00

14 lines
331 B
C#

using UnityEngine;
using UnityEngine.UIElements;
namespace DanieleMarotta.RiversongCodeShowcase
{
public interface IWorldUIService
{
void Register(VisualElement element, Transform target);
void Unregister(VisualElement element);
void SetWorldOffset(VisualElement element, Vector3 offset);
}
}