brkrs 0.0.1

Breakout/Arkanoid-style game built in Rust using the Bevy engine, with physics powered by bevy_rapier3d
Documentation
//! Game systems module
//!
//! Contains all game system implementations organized by functionality

pub mod audio;
pub mod grid_debug;
pub mod level_switch;
pub mod multi_hit;
pub mod respawn;
pub mod textures;

pub use audio::{
    AudioConfig, AudioPlugin, BallWallHit, BrickDestroyed, LevelCompleted, LevelStarted, SoundType,
};
pub use level_switch::{
    LevelSwitchPlugin, LevelSwitchRequested, LevelSwitchSource, LevelSwitchState,
};
pub use multi_hit::MultiHitBrickHit;
pub use respawn::{InputLocked, RespawnPlugin, RespawnSystems};
pub use textures::TextureManifestPlugin;