limboai/bb_param/bb_color.h

16 lines
285 B
C
Raw Normal View History

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