mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
13 lines
373 B
C#
13 lines
373 B
C#
using System;
|
|
using UnityEngine.Events;
|
|
using UnityAtoms.SceneMgmt;
|
|
|
|
namespace UnityAtoms.SceneMgmt
|
|
{
|
|
/// <summary>
|
|
/// None generic Unity Event x 2 of type `SceneField`. Inherits from `UnityEvent<SceneField, SceneField>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class SceneFieldSceneFieldUnityEvent : UnityEvent<SceneField, SceneField> { }
|
|
}
|