unity-atoms/Packages/SceneMgmt/Runtime/UnityEvents/SceneFieldUnityEvent.cs
2019-10-15 22:39:20 +02:00

13 lines
335 B
C#

using System;
using UnityEngine.Events;
using UnityAtoms.SceneMgmt;
namespace UnityAtoms.SceneMgmt
{
/// <summary>
/// None generic Unity Event of type `SceneField`. Inherits from `UnityEvent&lt;SceneField&gt;`.
/// </summary>
[Serializable]
public sealed class SceneFieldUnityEvent : UnityEvent<SceneField> { }
}