chore: fixed record struct arguments' naming

This commit is contained in:
2025-06-08 21:12:16 +03:00
parent e3b32b3c4a
commit f16a7e55c9
3 changed files with 6 additions and 6 deletions

View File

@@ -18,6 +18,6 @@ public interface IReadOnlyTimer
TimerState State { get; }
readonly record struct TimerDeltaArguments(double delta);
readonly record struct TimerDeltaArguments(double Delta);
}