rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 06 Jun 2020 15:10:41 +0200
changeset 15619 3409433a236a
parent 14456 a1613788130d
permissions -rw-r--r--
Fix many gears not being affected by gfMoreWind on turn end

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