10 lines
240 B
Rust
10 lines
240 B
Rust
use winit::event::Event;
|
|
use raidillon_assets::ModelManagerRef;
|
|
|
|
#[derive(Clone)]
|
|
pub struct PlatformContext {
|
|
pub current_event: Event<()>,
|
|
pub asset_manager: ModelManagerRef,
|
|
pub frame_width: f32,
|
|
pub frame_height: f32,
|
|
}
|