chore: fixed record struct arguments' naming
This commit is contained in:
@@ -35,6 +35,6 @@ public interface IPhysicsEngine2D
|
||||
/// <param name="deltaTime">The time step.</param>
|
||||
void StepIndividual(IRigidBody2D rigidBody, float deltaTime);
|
||||
|
||||
readonly record struct PhysicsIterationArguments(IPhysicsEngine2D sender, float iterationDeltaTime);
|
||||
readonly record struct PhysicsStepArguments(IPhysicsEngine2D sender, float stepDeltaTime);
|
||||
readonly record struct PhysicsIterationArguments(IPhysicsEngine2D Sender, float IterationDeltaTime);
|
||||
readonly record struct PhysicsStepArguments(IPhysicsEngine2D Sender, float StepDeltaTime);
|
||||
}
|
||||
|
Reference in New Issue
Block a user