blob: a7967ea7ab54063705fe9cb8b486fd8d721b3c66 [file] [log] [blame]
#ifndef _RIVE_STATUS_CODE_HPP_
#define _RIVE_STATUS_CODE_HPP_
#include "rive/rive_types.hpp"
namespace rive
{
enum class StatusCode : unsigned char
{
Ok,
MissingObject,
InvalidObject,
FailedInversion
};
}
#endif