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