blob: 0a4d606def974947907626f1ebb655390e157cb4 [file] [log] [blame] [edit]
#ifndef _RIVE_ARTBOARD_PROPERTY_HPP_
#define _RIVE_ARTBOARD_PROPERTY_HPP_
namespace rive
{
enum class ArtboardProperty : int
{
width = 0,
height = 1,
ratio = 2,
};
} // namespace rive
#endif