rust/physfs-rs/src/lib.rs
author alfadur
Sun, 26 May 2019 19:12:16 +0300
changeset 15081 9dbbb4bc1dcd
parent 14456 a1613788130d
permissions -rw-r--r--
add idle shouryuuken animation

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