- Implement a new timing module - Utilize the new timing module in glium platform implementation for frame limiting and fixed engine updates timing.
8 lines
160 B
Rust
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};
|