Compare commits

..

1 Commits

Author SHA1 Message Date
HumanoidSandvichDispenser 0cb3b5f312
Merge b287f978e3 into 516d79d86f 2024-05-27 12:15:05 -07:00
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
using Godot;
namespace SupaLidlGame.Extensions;
public static class TimerExtensions
{
public static void Restart(this Timer timer, double timeSec = -1)
{
timer.Stop();
timer.Start(timeSec);
}
}