Net.Like.Xue.Tokyo/Assets/Plugins/Character Controller Pro/Implementation/Scripts/Mobile/IUIVector2Action.cs

11 lines
186 B
C#
Raw Normal View History

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