Remove useless function

This commit is contained in:
Dusk 2022-12-01 12:04:10 +01:00
parent 6c77226652
commit 51404cd706
1 changed files with 0 additions and 5 deletions

View File

@ -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;