limboai/bb_param/bb_array.h

16 lines
269 B
C++

/* bb_array.h */
#ifndef BB_ARRAY_H
#define BB_ARRAY_H
#include "bb_param.h"
#include "core/object.h"
class BBArray : public BBParam {
GDCLASS(BBArray, BBParam);
protected:
virtual Variant::Type get_type() const { return Variant::ARRAY; }
};
#endif // BB_ARRAY_H