mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-27 10:28:24 -05:00
11 lines
315 B
C#
11 lines
315 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityAtoms.MonoHooks
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Action x 2 of type `Void` and `GameObject`. Inherits from `AtomAction<Void, GameObject>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-purple")]
|
||
|
public abstract class VoidGameObjectAction : AtomAction<Void, GameObject> { }
|
||
|
}
|