13 lines
243 B
C++
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;
|
|
}; |