rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Fri, 01 Nov 2019 23:35:01 +0100
changeset 15500 5eda4d7056bc
parent 14435 a1613788130d
permissions -rw-r--r--
ASA death02: Don't set hero health if enemy hurts itself

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