engine/gltf-loader/src/lib.rs

15 lines
178 B
Rust
Raw Normal View History

2024-08-23 11:22:09 +00:00
#![deny(rust_2018_idioms)]
pub mod prelude;
pub mod gltfasset;
pub mod primitive;
pub mod animation;
mod channel;
mod mesh;
mod node;
mod skin;
mod transforms;