mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
14 lines
404 B
C#
14 lines
404 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
[CreateAssetMenu(menuName = "UnityAtoms/Lists/Float List")]
|
|
public class FloatList : ScriptableObjectList<float>
|
|
{
|
|
public FloatEvent Added;
|
|
protected override GameEvent<float> _Added { get { return Added; } }
|
|
|
|
public FloatEvent Removed;
|
|
protected override GameEvent<float> _Removed { get { return Removed; } }
|
|
}
|
|
} |