12 lines
242 B
C++
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);
|
|
}
|