unity-atoms/Packages/BaseAtoms/Runtime/Actions/GameObjectPairAction.cs

10 lines
299 B
C#
Raw Normal View History

2020-03-02 02:26:06 +01:00
using UnityEngine;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Action of type `GameObjectPair`. Inherits from `AtomAction&lt;GameObjectPair&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class GameObjectPairAction : AtomAction<GameObjectPair> { }
}