war3parser_wasm/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! WASM bindings for war3parser
//!
//! [![NPM Version](https://img.shields.io/npm/v/%40wesleyel%2Fwar3parser)](https://www.npmjs.com/package/@wesleyel/war3parser)
//!
//! This crate is used to create WASM bindings for the war3parser crate.
//!
//! Prebuilt wasm files are available in [@wesleyel/war3parser](https://www.npmjs.com/package/@wesleyel/war3parser)
pub mod mapinfo;
pub mod types;

#[doc(inline)]
pub use mapinfo::WasmMapInfo;
#[doc(inline)]
pub use types::{wasm_image::WasmImage, wasm_w3i::WasmW3i};