From 8e82af708ca608f660db35ee90aac8973fca6fa6 Mon Sep 17 00:00:00 2001 From: Jacob Sapoznikow Date: Tue, 10 Sep 2024 16:38:24 +0000 Subject: [PATCH] comment --- .../Source/ContentSettings/ContentSettings.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ConfigurableWarning/Source/ContentSettings/ContentSettings.cs b/ConfigurableWarning/Source/ContentSettings/ContentSettings.cs index 2647552..dfc0c61 100644 --- a/ConfigurableWarning/Source/ContentSettings/ContentSettings.cs +++ b/ConfigurableWarning/Source/ContentSettings/ContentSettings.cs @@ -18,7 +18,10 @@ public partial class ContentSettings : BaseUnityPlugin /// internal new static ManualLogSource Logger { get; private set; } = null!; - private void Awake() + /// + /// Initialize ContentSettings. + /// + public void Awake() { // DON'T PATCH HARMONY HERE!!! ConfigurableWarning already does it! @@ -27,7 +30,10 @@ private void Awake() SettingsAssets.LoadAssets(); } - private void Update() + /// + /// Update ContentSettings. + /// + public void Update() { SettingsLoader.Update(); }