unity-atoms/Packages/Core/Runtime/Actions/GameObjectAction.cs
2019-10-15 22:30:18 +02:00

10 lines
273 B
C#

using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// Action of type `GameObject`. Inherits from `AtomAction&lt;GameObject&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class GameObjectAction : AtomAction<GameObject> { }
}