rust/physfs-rs/src/lib.rs
author unC0Rr
Mon, 03 Feb 2025 15:03:26 +0100
changeset 16110 ac8a3f377197
parent 14456 a1613788130d
permissions -rw-r--r--
Tune shoppa tile set for better results

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