rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 15 Jun 2019 13:06:15 +0200
changeset 15152 5dc3e3f1c0f9
parent 14440 a1613788130d
permissions -rw-r--r--
weBounce: Force hedgehogs to stay in playable area

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