9 lines
203 B
C#
9 lines
203 B
C#
using UnityEngine;
|
|
|
|
namespace Febucci.UI.Core
|
|
{
|
|
public class BuiltinDataScriptableBase<T> : ScriptableObject where T : new()
|
|
{
|
|
[SerializeField] public T effectValues = new T();
|
|
}
|
|
} |