Files
BITFALL/Assets/Plugins/Character Controller Pro/Implementation/Scripts/Mobile/IUIBoolAction.cs
CortexCore 45913c6b3e 1
2023-08-23 01:59:40 +08:00

9 lines
156 B
C#

namespace Lightbug.CharacterControllerPro.Implementation
{
public interface IUIBoolAction : IUIAction
{
bool BoolValue { get; }
}
}