mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
feature: add support for relative view model data bind paths Co-authored-by: hernan <hernan@rive.app>
13 lines
174 B
C++
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
|