grbc/include/grbc/ext.h
2024-09-29 10:08:34 -04:00

13 lines
243 B
C++

#pragma once
#include "sol/state.hpp"
#include <string>
#define GRBC_EXT_pkg_config_NAME "GRBC_EXT_pkg_config"
typedef void (*EXT_HookInit)(sol::state &lua);
struct Extension {
std::string name;
EXT_HookInit hook_init = nullptr;
};