2022-10-20 16:26:46 +00:00
|
|
|
/* bb_int_array.h */
|
|
|
|
|
|
|
|
#ifndef BB_INT_ARRAY_H
|
|
|
|
#define BB_INT_ARRAY_H
|
|
|
|
|
|
|
|
#include "bb_param.h"
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/object/object.h"
|
2022-10-20 16:26:46 +00:00
|
|
|
|
|
|
|
class BBIntArray : public BBParam {
|
|
|
|
GDCLASS(BBIntArray, BBParam);
|
|
|
|
|
|
|
|
protected:
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual Variant::Type get_type() const override { return Variant::PACKED_INT64_ARRAY; }
|
2022-10-20 16:26:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BB_INT_ARRAY_H
|