canto/Assets/Scripts/SOAP/InputAction/FloatInputAction.cs
2025-07-14 22:22:25 -04:00

8 lines
249 B
C#

using KitsuneCafe.System;
using UnityEngine;
namespace KitsuneCafe.SOAP
{
[CreateAssetMenu(fileName = "FloatInputAction", menuName = KitsuneCafeMenu.SoapInputMenu + "Float")]
public class FloatInputAction : ReactiveInputAction<float> { }
}