Move events to App class.

This commit is contained in:
2025-08-17 06:43:30 +02:00
parent dbac051fc2
commit 5f0b8a2a11
13 changed files with 65 additions and 62 deletions

View File

@@ -9,7 +9,7 @@ namespace Utils.Editor
{
public override void OnInspectorGUI()
{
Event("FixedUpdate", PhysicsEventManager.FixedUpdateLength, PhysicsEventManager.FixedUpdateDelegates);
Event("FixedUpdate", App.FixedUpdateLength, App.FixedUpdateDelegates);
}
private void Event(string title, int length, Delegate[] delegates)