A high-performance 2D game engine built on the euv framework, featuring ECS, fixed-timestep game loop, canvas rendering, physics, collision detection, sprite animation, and audio.
usecrate::*;/// A monotonically increasing counter used to assign unique IDs to entities.
pub(crate)staticNEXT_ENTITY_ID: AtomicU64 =AtomicU64::new(1);