rust/physfs-rs/src/lib.rs
author nemo
Mon, 19 Aug 2019 11:41:59 -0400
changeset 15342 0230c4766aa6
parent 14435 a1613788130d
permissions -rw-r--r--
make the mask colours more liberal due to possibility that OSX/SDL2 are slightly distorting them

//! 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;