7 lines
270 B
C
7 lines
270 B
C
|
#pragma once
|
||
|
#include "LuaVM.h"
|
||
|
#include <vector>
|
||
|
|
||
|
bool LuaCompareType(lua_State* L, int index, const char* type, bool leave = false);
|
||
|
void check(lua_State* L, const std::vector<int>& typearr, const std::vector<const char*>& userdata_type = std::vector<const char*>());
|