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