rust/physfs-rs/src/lib.rs
author alfadur
Wed, 01 May 2019 21:59:41 +0300
changeset 14871 0f39f8efbd2e
parent 14435 a1613788130d
permissions -rw-r--r--
add visual notification on room joins

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