moltrun 1.7.2

High-performance game engine library with AI capabilities, built on wgpu for modern 3D graphics and physics simulation
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod core;
pub mod runtime;
pub mod math;
pub mod systems;
pub mod components;

// 주요 타입들 재export
pub use runtime::{Engine, World, AssetManager, Camera};
pub use core::{Entity, EntityId, InputState};
pub use math::Vec2;