limboai/blackboard/bb_param/bb_string_array.h

16 lines
339 B
C
Raw Normal View History

2022-10-20 16:26:46 +00:00
/* bb_string_array.h */
#ifndef BB_STRING_ARRAY_H
#define BB_STRING_ARRAY_H
#include "bb_param.h"
#include "core/object/object.h"
2022-10-20 16:26:46 +00:00
class BBStringArray : public BBParam {
GDCLASS(BBStringArray, BBParam);
protected:
virtual Variant::Type get_type() const override { return Variant::PACKED_STRING_ARRAY; }
2022-10-20 16:26:46 +00:00
};
#endif // BB_STRING_ARRAY_H