rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sun, 13 Jan 2019 22:22:40 +0100
changeset 14569 0149d5ed5dc5
parent 14435 a1613788130d
permissions -rw-r--r--
Fix airplane line being drawn in front of many HUD elements

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