VoxelGameDev / OpenVox

Open Source Collaboration Project for /r/VoxelGameDev
Apache License 2.0
20 stars 3 forks source link

Events System #8

Closed Barnold1953 closed 9 years ago

Barnold1953 commented 9 years ago

Need an event system with delegates and functors.

Event myEvent;

myEvent.register(*this, &class::function);

myEvent(4);

Barnold1953 commented 9 years ago

Implemented.