Files
rive-cpp/include/rive/lua/lua_state.hpp
2026-01-13 07:13:04 +00:00

18 lines
304 B
C++

#ifndef _RIVE_LUA_STATE_HPP_
#define _RIVE_LUA_STATE_HPP_
#ifdef WITH_RIVE_SCRIPTING
#include "lua.h"
#endif
#include <vector>
namespace rive
{
class ViewModel;
#ifdef WITH_RIVE_SCRIPTING
void initializeLuaData(lua_State* state, std::vector<ViewModel*>& viewModels);
#endif
} // namespace rive
#endif