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