- Parse PMX 2.0/2.1 _header
 - Parse PMX 2.0/2.1 Model Info
- Name
 - English Name
 - Comment
 - English Comment
 
 - Parse vertices Information
 - Parse Material Information
 - Parse Bone Information
 - Parse Morph Information
 
- Implement Display trait
 - Parse RigidBody Information
 - Parse Joint
 - Parse SoftBody
 
- Import
 
extern crate PMXUtil;
use PMXUtil::pmx_loader::pmx_loader::PMXLoader;
- Create loader instance and read
 
let mut loader=PMXLoader::open("/path/to/pmxfile");
//get _header information
let _header=loader.get_header();
//get model information returns Result<PMXModelInfo,()>
let _model_info=loader.read_pmx_model_info().unwrap();