mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
8 lines
234 B
Plaintext
8 lines
234 B
Plaintext
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Lists/{TYPE_NAME}", fileName = "{TYPE_NAME}List")]
|
|
public sealed class {TYPE_NAME}List : ScriptableObjectList<{TYPE}, {TYPE_NAME}Event> { }
|
|
}
|