11 lines
186 B
C#
11 lines
186 B
C#
using UnityEngine;
|
|
|
|
namespace Lightbug.CharacterControllerPro.Implementation
|
|
{
|
|
public interface IUIVector2Action : IUIAction
|
|
{
|
|
Vector2 Vector2Value { get; }
|
|
}
|
|
}
|
|
|