unity-atoms/Packages/SceneMgmt/Runtime/UnityEvents/SceneFieldSceneFieldUnityEvent.cs

13 lines
373 B
C#
Raw Normal View History

2019-10-01 23:45:42 +02:00
using System;
using UnityEngine.Events;
2019-10-15 22:39:20 +02:00
using UnityAtoms.SceneMgmt;
2019-10-01 23:45:42 +02:00
namespace UnityAtoms.SceneMgmt
{
2019-10-15 22:39:20 +02:00
/// <summary>
/// None generic Unity Event x 2 of type `SceneField`. Inherits from `UnityEvent&lt;SceneField, SceneField&gt;`.
/// </summary>
2019-10-01 23:45:42 +02:00
[Serializable]
public sealed class SceneFieldSceneFieldUnityEvent : UnityEvent<SceneField, SceneField> { }
}