common: session Time

This commit is contained in:
Quaternions 2025-01-07 22:54:51 -08:00
parent 120d8197b7
commit 004e0d3776
2 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,7 @@ pub mod mouse;
pub mod timer;
pub mod integer;
pub mod physics;
pub mod session;
pub mod updatable;
pub mod instruction;
pub mod gameplay_attributes;

View File

@ -0,0 +1,3 @@
#[derive(Clone,Copy,Hash,Eq,PartialEq,PartialOrd,Debug)]
pub enum TimeInner{}
pub type Time=crate::integer::Time<TimeInner>;