11 lines
236 B
C#
11 lines
236 B
C#
using KitsuneCafe.System;
|
|
using UnityEngine;
|
|
|
|
namespace KitsuneCafe.SOAP
|
|
{
|
|
[CreateAssetMenu(fileName = "FloatValue", menuName = KitsuneCafeMenu.SoapValue + "Float")]
|
|
public class FloatValue : ReactiveValue<float>
|
|
{
|
|
|
|
}
|
|
}
|