diff --git a/src/Timer.zig b/src/Timer.zig index fe0b7db..9b8234a 100644 --- a/src/Timer.zig +++ b/src/Timer.zig @@ -22,11 +22,6 @@ pub fn start(self: *Self) void { self.initial = SDL.getTicks64(); } -pub fn unstop (self: *Self) void { - self.started = true; - -} - pub fn finished(self: *Self) bool { if (self.started) { self.progress = SDL.getTicks64() - self.initial;