mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
18 lines
615 B
C#
18 lines
615 B
C#
|
using System;
|
||
|
using UnityAtoms.SceneMgmt;
|
||
|
|
||
|
namespace UnityAtoms.SceneMgmt
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Event Reference of type `SceneField`. Inherits from `AtomEventReference<SceneField, SceneFieldVariable, SceneFieldEvent, SceneFieldSceneFieldEvent, SceneFieldSceneFieldFunction, SceneFieldVariableInstancer>`.
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public sealed class SceneFieldEventReference : AtomEventReference<
|
||
|
SceneField,
|
||
|
SceneFieldVariable,
|
||
|
SceneFieldEvent,
|
||
|
SceneFieldSceneFieldEvent,
|
||
|
SceneFieldSceneFieldFunction,
|
||
|
SceneFieldVariableInstancer> { }
|
||
|
}
|