unity-atoms/Source/Lists/IntList.cs

8 lines
187 B
C#
Raw Normal View History

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