blob: df773b9b365b173bd06dca9d22a55685af6a901e [file] [log] [blame]
#ifndef _RIVE_BINDABLE_PROPERTY_BOOLEAN_HPP_
#define _RIVE_BINDABLE_PROPERTY_BOOLEAN_HPP_
#include "rive/generated/data_bind/bindable_property_boolean_base.hpp"
#include <stdio.h>
namespace rive
{
class BindablePropertyBoolean : public BindablePropertyBooleanBase
{
public:
constexpr static bool defaultValue = false;
};
} // namespace rive
#endif