unity-atoms/Assets/UnityAtoms/Lists/GameObjectList.cs
2018-11-13 19:48:17 +01:00

8 lines
211 B
C#

using System;
using UnityEngine;
namespace UnityAtoms
{
[CreateAssetMenu(menuName = "Unity Atoms/Lists/GameObject")]
public class GameObjectList : ScriptableObjectList<GameObject, GameObjectEvent> { }
}