mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
18 lines
304 B
C++
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 |