rust/physfs-rs/src/lib.rs
author sheepluva
Fri, 25 Jun 2021 21:44:29 +0200
changeset 15806 36816af30583
parent 14435 a1613788130d
permissions -rw-r--r--
hedgewars-engine (rust): don't use image lib, manually resize (because speed); using nearest px for now

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