Files
2026-03-04 10:03:45 +08:00

10 lines
118 B
C#

using UnityEngine;
namespace Cooldhands
{
public interface IUICursor
{
Vector2 CursorPosition { get; set; }
}
}