rust/physfs-rs/src/lib.rs
author unC0Rr
Fri, 10 Mar 2023 11:42:25 +0100
branchtransitional_engine
changeset 15928 772a43d88e6b
parent 14435 a1613788130d
permissions -rw-r--r--
Fix water level, add medium template

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