rust/physfs-rs/src/lib.rs
author unc0rr
Tue, 01 Jan 2019 02:25:18 +0100
changeset 14507 184df3900ec4
parent 14435 a1613788130d
permissions -rw-r--r--
- Bots activate extra time if needed - Refactor work with forecast of time needed to perform planned actions (ticks variable)

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