10 lines
283 B
C#
10 lines
283 B
C#
using UnityEngine;
|
|
|
|
namespace RPGCore.Stats.ObjectModules.StatsObjectModule
|
|
{
|
|
[CreateAssetMenu(menuName = "RPG Core/Object Resource Definition")]
|
|
public class StatResourceDefinitionSO : ScriptableObject
|
|
{
|
|
public StatValueDefinitionSO valueDefinitionSO;
|
|
}
|
|
} |