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