h2-mod/src/client/component/gsc/script_extension.hpp
2023-03-07 19:34:33 +01:00

12 lines
242 B
C++

#pragma once
#define FUNC_TABLE_SIZE 0x1000
namespace gsc
{
extern void* func_table[FUNC_TABLE_SIZE];
void scr_error(bool force_print, const char* fmt, ...);
void add_function(const std::string& name, game::BuiltinFunction function);
}