Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneWizard08 committed Sep 10, 2024
1 parent 2f7616c commit 8e82af7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions ConfigurableWarning/Source/ContentSettings/ContentSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ public partial class ContentSettings : BaseUnityPlugin
/// </summary>
internal new static ManualLogSource Logger { get; private set; } = null!;

private void Awake()
/// <summary>
/// Initialize ContentSettings.
/// </summary>
public void Awake()
{
// DON'T PATCH HARMONY HERE!!! ConfigurableWarning already does it!

Expand All @@ -27,7 +30,10 @@ private void Awake()
SettingsAssets.LoadAssets();
}

private void Update()
/// <summary>
/// Update ContentSettings.
/// </summary>
public void Update()
{
SettingsLoader.Update();
}
Expand Down

0 comments on commit 8e82af7

Please sign in to comment.