mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
13 lines
430 B
C#
13 lines
430 B
C#
using UnityEngine;
|
|
using UnityAtoms.SceneMgmt;
|
|
|
|
namespace UnityAtoms.SceneMgmt
|
|
{
|
|
/// <summary>
|
|
/// List of type `SceneField`. Inherits from `AtomList<SceneField, SceneFieldEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-piglet")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Lists/SceneField", fileName = "SceneFieldList")]
|
|
public sealed class SceneFieldList : AtomList<SceneField, SceneFieldEvent> { }
|
|
}
|