2021-08-29 22:58:10 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace notifies
|
|
|
|
{
|
|
|
|
extern std::unordered_map<const char*, sol::protected_function> vm_execute_hooks;
|
|
|
|
extern bool hook_enabled;
|
|
|
|
|
2021-09-16 18:12:54 -04:00
|
|
|
void add_entity_damage_callback(const sol::protected_function&);
|
2021-08-29 22:58:10 -04:00
|
|
|
void clear_callbacks();
|
|
|
|
}
|