rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 15 Jun 2019 01:18:40 +0200
changeset 15161 53342ce3f0a6
parent 14456 a1613788130d
permissions -rw-r--r--
Fix freezer drawing land outside of indestructible land border in some map types

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