2023-08-27 01:35:49 -06:00

14 lines
241 B
C++

#pragma once
namespace gsc
{
namespace function
{
void add(const std::string& name, const game::BuiltinFunction function);
}
namespace method
{
void add(const std::string& name, const game::BuiltinMethod method);
}
}