extrawurst / DerelictFmod

Dynamic bindings of the fmod sound library in the D programming language

Home Page:http://code.dlang.org/packages/derelict-fmod

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DerelictFmod Build Status

Note: Supports fmod version 1.10.00

A dynamic binding to Fmod low level api and fmodstudio api (c-api) for the D Programming Language.

For information on how to build DerelictFmod and link it with your programs, please see the post Using Derelict at the The One With D.

See more detailed example app here.

Just initializing of the bindings:

import derelict.fmod.fmod;

void main() {
    // Load the Fmod library.
    DerelictFmod.load();
    // Load the Fmod studio library.
    DerelictFmodStudio.load();

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

Note: Do not forget to download the official fmod binaries (shared libraries).

About

Dynamic bindings of the fmod sound library in the D programming language

http://code.dlang.org/packages/derelict-fmod

License:MIT License


Languages

Language:D 100.0%