rust/physfs-rs/src/lib.rs
author nemo
Wed, 09 Jan 2019 16:27:57 -0500
changeset 14531 e0af4ce7d8bc
parent 14435 a1613788130d
permissions -rw-r--r--
fix incorrect mask set in r7b4643ff60ea - this causes ghost hog collisions and odd hog jumps on overlap with active hog

//! PhysFS bindings for Rust

#![deny(missing_docs)]

extern crate libc;

pub use physfs::*;
pub use physfs::file::*;

/// PhysFS bindings
mod physfs;
/// Definitions for the PhysFS primitives
mod primitives;