rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 26 Oct 2019 21:59:42 +0200
changeset 15483 70aba717485a
parent 14435 a1613788130d
permissions -rw-r--r--
Racer: Reposition and resize predefined waypoints in scaled drawn maps Previously, predefined waypoints broke when using any but the default drawn map size.

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