blob: 6b37b6593b14bee3ce79eb57f256aaad36b1e534 [file]
#ifndef _RIVE_JOYSTICK_FLAGS_HPP_
#define _RIVE_JOYSTICK_FLAGS_HPP_
#include "rive/enums.hpp"
namespace rive
{
enum class JoystickFlags : unsigned char
{
none = 0,
/// Whether to invert the application of the x axis.
invertX = 1 << 0,
/// Whether to invert the application of the y axis.
invertY = 1 << 1,
/// Whether this Joystick works in world space.
worldSpace = 1 << 2
};
} // namespace rive
#endif