docs: updated physics interface delta parameter comment

This commit is contained in:
2025-06-05 23:17:45 +03:00
parent f5fbd4e5ef
commit fbdea47dc7
4 changed files with 5 additions and 3 deletions

View File

@@ -10,6 +10,6 @@ public interface IPhysicsUpdate : IBehaviour
/// <summary>
/// Updates the physics state of the object based on the elapsed time since the last update.
/// </summary>
/// <param name="delta">The time elapsed since the last physics update, typically in seconds.</param>
/// <param name="delta">The time elapsed since the last physics update.</param>
void PhysicsUpdate(float delta);
}