mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
10 lines
308 B
C#
10 lines
308 B
C#
|
using UnityAtoms.SceneMgmt;
|
||
|
namespace UnityAtoms.SceneMgmt
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Action of type `SceneFieldPair`. Inherits from `AtomAction<SceneFieldPair>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-purple")]
|
||
|
public abstract class SceneFieldPairAction : AtomAction<SceneFieldPair> { }
|
||
|
}
|