#ifndef EQEMU_CALLBACK_MANAGER_H #define EQEMU_CALLBACK_MANAGER_H #include #include typedef std::function eqemu_callback; void RegisterEQCallback(std::string name, eqemu_callback func); eqemu_callback GetEQCallback(std::string name); #endif