10 lines
193 B
C#
10 lines
193 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Ktyl.Util
|
||
|
{
|
||
|
[CreateAssetMenu(menuName = "Create SerialFloat", fileName = "SerialFloat")]
|
||
|
public class SerialFloat : SerialVar<float>
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|