doukutsu-rs/src/framework/mod.rs

24 lines
475 B
Rust
Raw Normal View History

2022-01-08 05:57:04 +00:00
#![allow(unused)]
2021-01-27 18:20:47 +00:00
pub mod backend;
2021-02-24 08:28:47 +00:00
#[cfg(feature = "backend-glutin")]
2021-04-14 10:09:40 +00:00
pub mod backend_glutin;
2022-12-01 13:30:59 +00:00
#[cfg(feature = "backend-horizon")]
pub mod backend_horizon;
2022-07-20 13:07:24 +00:00
pub mod backend_null;
2021-02-24 08:28:47 +00:00
#[cfg(feature = "backend-sdl")]
pub mod backend_sdl2;
2021-01-27 18:20:47 +00:00
pub mod context;
pub mod error;
pub mod filesystem;
2022-07-20 13:07:24 +00:00
pub mod gamepad;
#[cfg(feature = "render-opengl")]
mod gl;
2021-01-27 18:20:47 +00:00
pub mod graphics;
pub mod keyboard;
2021-04-14 10:09:40 +00:00
#[cfg(feature = "render-opengl")]
pub mod render_opengl;
2021-02-05 22:47:13 +00:00
pub mod ui;
pub mod util;
2021-02-05 22:47:13 +00:00
pub mod vfs;