rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 12 Jan 2019 23:38:34 +0100
changeset 14561 c8436da5c58b
parent 14435 a1613788130d
permissions -rw-r--r--
Mention zoom key in movement training

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