unity-atoms/Packages/Core/Runtime/Actions/GameObjectAction.cs

10 lines
273 B
C#
Raw Normal View History

2018-10-30 20:05:06 +01:00
using UnityEngine;
namespace UnityAtoms
{
2019-10-15 22:30:18 +02:00
/// <summary>
/// Action of type `GameObject`. Inherits from `AtomAction&lt;GameObject&gt;`.
/// </summary>
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-purple")]
public abstract class GameObjectAction : AtomAction<GameObject> { }
}