blob: 3e9c3c9b0367f58c3ed12f6331e428883d0a13cf [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