rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 17 Jan 2019 01:35:43 +0100 (2019-01-17)
changeset 14625 835072bcbfb6
parent 14435 a1613788130d
permissions -rw-r--r--
Animate lib: AnimOutOfNowhere's 2nd and 3rd args are now optional
//! 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;