mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 03:52:30 +00:00
11 lines
136 B
C++
11 lines
136 B
C++
|
|
#ifndef UTIL_LUA_HPP
|
||
|
|
#define UTIL_LUA_HPP
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
#include "lua.h"
|
||
|
|
#include "lualib.h"
|
||
|
|
#include "lauxlib.h"
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|