oxide_engine/lib.rs
1//! Oxide Core - A 3D game engine targeting macOS/Metal
2//!
3//! Oxide Core is built from scratch using wgpu for rendering,
4//! Oxide ECS abstractions for entity-component-system architecture, and glam for math.
5
6pub mod app;
7pub mod asset;
8pub mod camera;
9pub mod ecs;
10pub mod event;
11pub mod input;
12pub mod light;
13pub mod prelude;
14pub mod render;
15pub mod scene;
16pub mod time;
17pub mod ui;
18pub mod watcher;
19pub mod window;
20
21pub use oxide_math as math;
22pub use oxide_renderer as renderer;
23
24pub use oxide_ecs;