From a390652dec02d698880e9f587f26e379bf18e039 Mon Sep 17 00:00:00 2001 From: NotAKidoS <37721153+NotAKidOnSteam@users.noreply.github.com> Date: Mon, 14 Aug 2023 18:53:24 -0500 Subject: [PATCH] [CVRGizmos] Cleanup --- CVRGizmos/CVRGizmoManager.cs | 2 +- CVRGizmos/Main.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CVRGizmos/CVRGizmoManager.cs b/CVRGizmos/CVRGizmoManager.cs index b825d45..fd03eb0 100644 --- a/CVRGizmos/CVRGizmoManager.cs +++ b/CVRGizmos/CVRGizmoManager.cs @@ -30,7 +30,7 @@ namespace NAK.CVRGizmos typeof(CVRGizmos_CapsuleCollider), }; - void Start() + private void Start() { CVRGizmoManager.Instance = this; managed = new MonoBehaviour[GizmoTypes.Count()]; diff --git a/CVRGizmos/Main.cs b/CVRGizmos/Main.cs index 8ba7414..57da2b8 100644 --- a/CVRGizmos/Main.cs +++ b/CVRGizmos/Main.cs @@ -22,7 +22,7 @@ public class CVRGizmos : MelonMod MelonLoader.MelonCoroutines.Start(WaitForLocalPlayer()); } - IEnumerator WaitForLocalPlayer() + private IEnumerator WaitForLocalPlayer() { while (PlayerSetup.Instance == null) yield return null;