11 lines
228 B
C#
11 lines
228 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Ktyl.Util
|
||
|
{
|
||
|
[CreateAssetMenu(menuName = "ktyl/Util/Double")]
|
||
|
public class SerialDouble : SerialVar<double>
|
||
|
{
|
||
|
}
|
||
|
}
|