mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
18 lines
466 B
C#
18 lines
466 B
C#
// using UnityEngine;
|
|
|
|
// namespace UnityAtoms.MonoHooks
|
|
// {
|
|
// /// <summary>
|
|
// /// Mono Hook for [`Start`](https://docs.unity3d.com/ScriptReference/MonoBehaviour.Start.html)
|
|
// /// </summary>
|
|
// [EditorIcon("atom-icon-delicate")]
|
|
// [AddComponentMenu("Unity Atoms/Hooks/On Start Hook")]
|
|
// public sealed class OnStartHook : VoidHook
|
|
// {
|
|
// private void Start()
|
|
// {
|
|
// OnHook();
|
|
// }
|
|
// }
|
|
// }
|