timer comments

This commit is contained in:
Quaternions 2024-07-30 21:51:46 -07:00
parent 6db7b146dc
commit e3e6891dd6

View File

@ -1,5 +1,10 @@
use strafesnet_common::integer::{Time,Ratio64};
//this could be about half as long if I only had
//scaled timers and just used a scale of 1
//but I thought the concept of a timer that could
//only be paused and not scaled was cool
pub trait TimerState:Copy{
fn get_time(&self,time:Time)->Time;
fn set_time(&mut self,time:Time,new_time:Time);