Removed Initialize()

This commit is contained in:
2026-01-30 20:37:36 -05:00
parent 9f744fcd5f
commit 82fa3a02c2
14 changed files with 5 additions and 18 deletions

View File

@@ -8,15 +8,10 @@ public interface AwperativeHook
/// <summary>
/// Called when the program starts; It is not recommended you load assets here.
/// </summary>
public void Initialize() {}
public void Load() {}
/// <summary>
/// Called when the program closes.
/// </summary>
public void Terminate() {}
/// <summary>
/// Called when Awperative loads content.
/// </summary>
public void Load() {}
}