mirror of
https://github.com/JezuzLizard/T4SP-Server-Plugin.git
synced 2025-04-20 21:45:43 +00:00
16 lines
359 B
C++
16 lines
359 B
C++
#pragma once
|
|
|
|
namespace gsc
|
|
{
|
|
namespace function
|
|
{
|
|
void add(const std::string& name, const game::BuiltinFunction function);
|
|
game::BuiltinFunction get(const char** name, int* type);
|
|
}
|
|
|
|
namespace method
|
|
{
|
|
void add(const std::string& name, const game::BuiltinMethod method);
|
|
game::BuiltinMethod get(const char** name, int* type);
|
|
}
|
|
} |