10 lines
292 B
C#
Raw Normal View History

2019-10-15 22:39:20 +02:00
using UnityAtoms.SceneMgmt;
2019-10-01 17:27:22 +02:00
namespace UnityAtoms.SceneMgmt
{
2019-10-15 22:39:20 +02:00
/// <summary>
/// Action of type `SceneField`. Inherits from `AtomAction&lt;SceneField&gt;`.
/// </summary>
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-purple")]
public abstract class SceneFieldAction : AtomAction<SceneField> { }
}