Files
rive-cpp/include/rive/manifest_sections.hpp
bodymovin 5a94a09dfb feature: add support for relative view model data bind paths for nested artboards (#11344) 923b32059d
feature: add support for relative view model data bind paths

Co-authored-by: hernan <hernan@rive.app>
2025-12-23 23:14:54 +00:00

13 lines
174 B
C++

#ifndef _RIVE_MANIFEST_FLAGS_HPP_
#define _RIVE_MANIFEST_FLAGS_HPP_
namespace rive
{
enum class ManifestSections : unsigned char
{
names = 0,
paths = 1,
};
}
#endif