derelict-enet

A dynamic binding to the ENet library.


Keywords
library, network, binding
License
BSL-1.0
Install
dub fetch derelict-enet --version 4.2.0

Documentation

DerelictENET

Based on enet version: 1.3.15

A dynamic binding to ENet for the D Programming Language.

Please see the pages Building and Linking Derelict and Using Derelict, or information on how to build DerelictENet and load the ENet library at run time. In the meantime, here's some sample code.

import derelict.enet.enet;

void main() {
    // Load the ENet library.
    DerelictENet.load();

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