Skip to content

Commit

Permalink
Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanslikesocool committed Jun 21, 2023
1 parent 8d8f945 commit 689400e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Scripts/EaseKit/CKSpringTimer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace ClockKit {
/// </summary>
/// <seealso cref="Spring"/>
/// <seealso cref="CKSpringAnimation"/>
public struct CKSpringTimer : ITimer {
public struct CKSpringTimer : ICKTimer {
public delegate void UpdateCallback(in Spring.Solver.State state);
public delegate void CompletionCallback(in Spring.Solver.State state);

Expand Down Expand Up @@ -67,7 +67,7 @@ public CKSpringTimer(
this.onComplete = onComplete;
}

public bool OnUpdate(in ClockInformation information) {
public bool OnUpdate(in CKClockInformation information) {
if (IsComplete) {
return true;
}
Expand Down

0 comments on commit 689400e

Please sign in to comment.