2024-11-20 11:36:36 +08:00
|
|
|
using UnityEngine;
|
2024-11-03 16:42:23 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2024-11-20 11:36:36 +08:00
|
|
|
namespace Pinwheel.Jupiter
|
2024-11-03 16:42:23 +08:00
|
|
|
{
|
2024-11-20 11:36:36 +08:00
|
|
|
public enum JCurveOrGradient
|
2024-11-03 16:42:23 +08:00
|
|
|
{
|
2024-11-20 11:36:36 +08:00
|
|
|
Curve, Gradient
|
2024-11-03 16:42:23 +08:00
|
|
|
}
|
|
|
|
}
|