16 lines
262 B
C
16 lines
262 B
C
|
/* bb_bool.h */
|
||
|
|
||
|
#ifndef BB_BOOL_H
|
||
|
#define BB_BOOL_H
|
||
|
|
||
|
#include "bb_param.h"
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class BBBool : public BBParam {
|
||
|
GDCLASS(BBBool, BBParam);
|
||
|
|
||
|
protected:
|
||
|
virtual Variant::Type get_type() const { return Variant::BOOL; }
|
||
|
};
|
||
|
|
||
|
#endif // BB_BOOL_H
|