limboai/blackboard/bb_param/bb_float_array.h

16 lines
333 B
C
Raw Normal View History

2022-10-20 16:26:46 +00:00
/* bb_real_array.h */
2022-12-17 13:22:55 +00:00
#ifndef BB_FLOAT_ARRAY_H
#define BB_FLOAT_ARRAY_H
2022-10-20 16:26:46 +00:00
#include "bb_param.h"
#include "core/object/object.h"
2022-10-20 16:26:46 +00:00
2022-12-17 13:22:55 +00:00
class BBFloatArray : public BBParam {
GDCLASS(BBFloatArray, BBParam);
2022-10-20 16:26:46 +00:00
protected:
virtual Variant::Type get_type() const override { return Variant::PACKED_FLOAT64_ARRAY; }
2022-10-20 16:26:46 +00:00
};
2022-12-17 13:22:55 +00:00
#endif // BB_FLOAT_ARRAY_H