derelict-physfs

A dynamic binding to the PhysicsFS library.


Keywords
library, binding, data
License
BSL-1.0
Install
dub fetch derelict-physfs --version 3.0.0-beta.2

Documentation

DerelictPHYSFS

A dynamic binding to version 2.1 of the PhysicsFS library for the D Programming Language.

Please see the pages Building and Linking Derelict and Using Derelict, in the Derelict documentation, for information on how to build DerelictPHYSFS and load PhysicsFS at run time. In the meantime, here's some sample code.

import derelict.physfs.physfs;

void main() {
    // Load the PhysicsFS library.
    DerelictPHYSFS.load();

    // Now PhysicsFS functions can be called.
    ...
}