16 lines
307 B
C
16 lines
307 B
C
|
/* bb_real_array.h */
|
||
|
|
||
|
#ifndef BB_REAL_ARRAY_H
|
||
|
#define BB_REAL_ARRAY_H
|
||
|
|
||
|
#include "bb_param.h"
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class BBRealArray : public BBParam {
|
||
|
GDCLASS(BBRealArray, BBParam);
|
||
|
|
||
|
protected:
|
||
|
virtual Variant::Type get_type() const { return Variant::POOL_REAL_ARRAY; }
|
||
|
};
|
||
|
|
||
|
#endif // BB_REAL_ARRAY_H
|