assembly_maps/luz/mod.rs
1//! # The zone/world (`*.luz`) file format
2//!
3//! This module can be used to read the zone/world file format
4//! used in the game LEGO Universe.
5
6/// Data definitions for zone files
7pub mod core;
8/// Reading of zone files
9pub mod io;
10/// Parser functions for zone file data
11pub mod parser;
12/// Module for reading the path data in a zone file
13pub mod paths;