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