fn main() {
println!("gltf-export library");
println!("===================");
println!("This is a library crate with examples in the 'examples' directory.");
println!("Run examples with 'cargo run --example <example_name>'");
println!("");
println!("Available examples:");
println!(" - simple_box Simple box export example");
println!(" - materials_demo Demo of different material types");
println!(" - texture_demo Demo of textured materials");
println!(" - hierarchy_demo Demo of node hierarchies and parent-child relationships");
println!(" - custom_mesh_demo Demo of custom meshes with user-provided UV coordinates");
println!(" - primitives_demo Demo of basic 3D primitives (sphere, cylinder, plane, etc.)");
}