11 lines
309 B
C#
11 lines
309 B
C#
using UnityEngine;
|
|
|
|
namespace Syntriax.Modules.Movement.VariableMovement
|
|
{
|
|
[CreateAssetMenu(fileName = "VMCollection", menuName = "Syntriax/Modules/Movement/Variable Movement/Collection", order = 0)]
|
|
public class VMCollectionSO : ScriptableObject
|
|
{
|
|
public VMCollection collection;
|
|
}
|
|
}
|