quake-files 0.1.0

A library for reading, writing and converting Quake 1 files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg_attr(feature="nightly", feature(plugin))]
#![cfg_attr(feature="nightly", plugin(clippy))]

extern crate image;
extern crate byteorder;
extern crate walkdir;
#[macro_use]
extern crate log;

pub mod pak;
pub mod lmp;
pub mod error;
pub mod palette;

pub use pak::{PakFile, create_pak};
pub use lmp::LmpImage;
pub use error::{QError, QResult};
pub use palette::{Palette, Color};