UiPro/PointerInterfaces.cs

Defines simple UI pointer event handler interfaces for enter, exit, up, down, and click. Each interface declares a single method to be implemented by UI components.

namespace Sandbox.UiPro;

public interface IPointerEnterHandler
{
	void OnPointerEnter();
}

public interface IPointerExitHandler
{
	void OnPointerExit();
}

public interface IPointerUpHandler
{
	void OnPointerUp();
}

public interface IPointerDownHandler
{
	void OnPointerDown();
}

public interface IPointerClickHandler
{
	void OnPointerClick();
}