libtcod / umbra

A libtcod game engine used by a handful of older projects.
BSD 3-Clause "New" or "Revised" License
2 stars 1 forks source link

Remove bundled delegate code. #2

Open HexDecimal opened 1 year ago

HexDecimal commented 1 year ago

Umbra currently uses a specialized delegate module for callbacks. I'm not really convinced that this code is useful post C++11, and I'd like to replace the uses of this with the more standard std::function type which is easier to work with.