Files

11 lines
186 B
C#
Raw Permalink Normal View History

2024-11-03 16:42:23 +08:00
using UnityEngine;
namespace Lightbug.CharacterControllerPro.Implementation
{
public interface IUIVector2Action : IUIAction
{
Vector2 Vector2Value { get; }
}
}