timer comments

This commit is contained in:
Quaternions 2024-07-30 21:51:46 -07:00
parent d48ae74c1e
commit af1bec81ce

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