Files
iFactory.Cutting.Unity/Assets/Plugins/Character Controller Pro/Implementation/Scripts/Mobile/IUIVector2Action.cs

11 lines
186 B
C#
Raw Normal View History

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