rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 20 Dec 2018 19:03:34 +0100
changeset 14484 764ba6182389
parent 14435 a1613788130d
permissions -rw-r--r--
Change AddTeam/AddMissionTeam to return real team name and index (in that order)

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