unity-atoms/Source/Lists/IntList.cs
2019-09-25 21:05:06 +02:00

8 lines
187 B
C#

using UnityEngine;
namespace UnityAtoms
{
[CreateAssetMenu(menuName = "Unity Atoms/Lists/Int", fileName = "IntList")]
public sealed class IntList : AtomList<int, IntEvent> { }
}