16 lines
269 B
C
16 lines
269 B
C
|
/* bb_color.h */
|
||
|
|
||
|
#ifndef BB_COLOR_H
|
||
|
#define BB_COLOR_H
|
||
|
|
||
|
#include "bb_param.h"
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class BBColor : public BBParam {
|
||
|
GDCLASS(BBColor, BBParam);
|
||
|
|
||
|
protected:
|
||
|
virtual Variant::Type get_type() const { return Variant::COLOR; }
|
||
|
};
|
||
|
|
||
|
#endif // BB_COLOR_H
|