euv-engine 0.9.0

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.
Documentation
//! euv-engine
//!
//! A high-performance 2D and 3D game engine built on the euv framework for WebAssembly,
//! featuring an ECS-style entity system, fixed-timestep game loop, canvas rendering,
//! physics simulation, collision detection, sprite animation, scene management,
//! asset loading, and Web Audio integration.

mod asset;
mod audio;
mod collider;
mod entity;
mod input;
mod math;
mod physics;
mod renderer;
mod scene;
mod scheduler;
mod sprite;

pub use {
    asset::*, audio::*, collider::*, entity::*, input::*, math::*, physics::*, renderer::*,
    scene::*, scheduler::*, sprite::*,
};

use euv::*;

use std::{
    cell::RefCell,
    collections::{HashMap, HashSet},
    ops::{Add, AddAssign, Mul, MulAssign, Neg, Sub, SubAssign},
    rc::Rc,
    sync::atomic::{AtomicU64, Ordering},
};

use {js_sys::*, lombok_macros::*, wasm_bindgen::prelude::*, web_sys::*};