raidillon/platform/src/lib.rs
reo 84ab3a26b1 Timing Module Update
- Implement a new timing module
- Utilize the new timing module in glium platform implementation for frame limiting and fixed engine updates timing.
2025-09-24 23:20:51 +03:00

8 lines
160 B
Rust

pub mod platform;
mod camera;
mod event;
pub mod context;
pub use platform::Platform;
pub use camera::Camera;
pub use context::{PlatformContext, TimeContext};