blob: dc3af7decb6effd036a206bcb24a25fdc07a8661 [file] [log] [blame]
#ifndef _RIVE_TRANSFORM_SPACE_HPP_
#define _RIVE_TRANSFORM_SPACE_HPP_
namespace rive
{
enum class TransformSpace : unsigned int
{
world = 0,
local = 1
};
}
#endif