rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy@disroot.org>
Wed, 28 Jun 2023 21:14:56 +0200
changeset 15998 91c487e7d11d
parent 14456 a1613788130d
permissions -rw-r--r--
Add GetEngineString function to expose some string IDs to Lua

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