shadow_engine_2d 2.0.1

A modern, high-performance 2D game engine built in Rust with ECS, physics, particles, audio, and more
Documentation
pub mod audio;
pub mod camera;
pub mod core;
pub mod ecs;
pub mod graphics;
pub mod input;
pub mod math;
pub mod particles;
pub mod physics;
pub mod texture;
pub mod time;
pub mod ui;

pub use audio::*;
pub use camera::*;
pub use core::*;
pub use ecs::*;
pub use graphics::*;
pub use input::*;
pub use math::*;
pub use particles::*;
pub use physics::*;
pub use texture::*;
pub use time::*;
pub use ui::*;

pub mod prelude {
    pub use crate::audio::*;
    pub use crate::camera::*;
    pub use crate::core::*;
    pub use crate::ecs::*;
    pub use crate::graphics::*;
    pub use crate::input::*;
    pub use crate::math::*;
    pub use crate::particles::*;
    pub use crate::physics::*;
    pub use crate::texture::*;
    pub use crate::time::*;
    pub use crate::ui::*;
}