Files

11 lines
186 B
C#
Raw Permalink Normal View History

2023-08-23 01:59:40 +08:00
using UnityEngine;
namespace Lightbug.CharacterControllerPro.Implementation
{
public interface IUIVector2Action : IUIAction
{
Vector2 Vector2Value { get; }
}
}