rust/physfs-rs/src/lib.rs
author S-D-
Fri, 30 Aug 2019 14:15:34 +0300
changeset 15385 c35c5a9b878c
parent 14435 a1613788130d
permissions -rw-r--r--
Allow playing Racer without invulnerability

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