10 lines
118 B
C#
10 lines
118 B
C#
using UnityEngine;
|
|
|
|
namespace Cooldhands
|
|
{
|
|
public interface IUICursor
|
|
{
|
|
Vector2 CursorPosition { get; set; }
|
|
}
|
|
}
|