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