9 lines
160 B
C#
9 lines
160 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Ktyl.Util
|
||
|
{
|
||
|
[CreateAssetMenu(menuName = "ktyl/Util/Bool")]
|
||
|
public class SerialBool : SerialVar<bool>
|
||
|
{
|
||
|
}
|
||
|
}
|