Update methods to be internal, remove invocation bloat

This commit is contained in:
Michal Pikulski
2025-11-10 21:59:47 +01:00
parent 01caca1878
commit a049c6a750
42 changed files with 137 additions and 136 deletions

View File

@@ -47,7 +47,7 @@ namespace Core
// ManagedBehaviour configuration
public override int ManagedAwakePriority => 15; // Core infrastructure, after GameManager
protected override void OnManagedAwake()
internal override void OnManagedAwake()
{
// Set instance immediately (early initialization)
_instance = this;
@@ -63,7 +63,7 @@ namespace Core
}
}
protected override void OnManagedStart()
internal override void OnManagedStart()
{
// Set up loading screen reference and events
// This must happen in ManagedStart because LoadingScreenController instance needs to be set first