projectEli/Assets/NeoFPS/Core/MotionGraphs/MotionGraphData.cs
2022-11-06 20:28:33 -05:00

13 lines
331 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace NeoFPS.CharacterMotion
{
public abstract class MotionGraphData<ValueType> : MotionGraphDataBase
{
[SerializeField] protected ValueType m_Value = default(ValueType);
public abstract ValueType value { get; }
}
}