limboai/bb_param/bb_bool.h

16 lines
278 B
C
Raw Normal View History

2022-10-20 16:26:46 +00:00
/* bb_bool.h */
#ifndef BB_BOOL_H
#define BB_BOOL_H
#include "bb_param.h"
#include "core/object/object.h"
2022-10-20 16:26:46 +00:00
class BBBool : public BBParam {
GDCLASS(BBBool, BBParam);
protected:
virtual Variant::Type get_type() const override { return Variant::BOOL; }
2022-10-20 16:26:46 +00:00
};
#endif // BB_BOOL_H