1//! GLDF Viewer - Cross-platform GUI application using egui 2//! 3//! This crate provides a GLDF file viewer that works on: 4//! - Native: Windows, macOS, Linux 5 6mod app; 7pub mod l3d_render; 8mod ui; 9 10pub use app::GldfViewerApp;