16 lines
268 B
C
16 lines
268 B
C
|
/* bb_float.h */
|
||
|
|
||
|
#ifndef BB_FLOAT_H
|
||
|
#define BB_FLOAT_H
|
||
|
|
||
|
#include "bb_param.h"
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class BBFloat : public BBParam {
|
||
|
GDCLASS(BBFloat, BBParam);
|
||
|
|
||
|
protected:
|
||
|
virtual Variant::Type get_type() const { return Variant::REAL; }
|
||
|
};
|
||
|
|
||
|
#endif // BB_FLOAT_H
|