Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 594 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 594 Bytes

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.
    ...
}