mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
14 lines
321 B
C#
14 lines
321 B
C#
|
namespace UnityAtoms.MonoHooks
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Base class for all `MonoHook`s of type `Void`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-delicate")]
|
||
|
public abstract class VoidHook : MonoHook<
|
||
|
VoidEvent,
|
||
|
VoidGameObjectEvent,
|
||
|
Void,
|
||
|
GameObjectGameObjectFunction>
|
||
|
{ }
|
||
|
}
|