mirror of
https://github.com/ApfelTeeSaft/gameBase.git
synced 2026-08-26 19:23:30 +00:00
18 lines
233 B
C++
18 lines
233 B
C++
#ifndef SOL_UTIL_H
|
|
#define SOL_UTIL_H
|
|
#define SOL_ALL_SAFETIES_ON 1
|
|
|
|
#include <sol/sol.hpp>
|
|
|
|
extern "C" {
|
|
#include <lua.h>
|
|
#include <lauxlib.h>
|
|
#include <lualib.h>
|
|
}
|
|
|
|
namespace gameBase{
|
|
sol::state_view generateView();
|
|
}
|
|
|
|
#endif
|