roast2d_internal 0.3.0-alpha.1

Roast2D internal crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::app::App;

mod clock;
mod key_code;
mod sprite_render;
pub mod types;
mod wgpu;

pub(crate) fn platform_run(app: App) -> anyhow::Result<()> {
    wgpu::WGPUPlatform::run(app)
}