16 lines
320 B
C++
16 lines
320 B
C++
/* bb_dictionary.h */
|
|
|
|
#ifndef BB_DICTIONARY_H
|
|
#define BB_DICTIONARY_H
|
|
|
|
#include "bb_param.h"
|
|
#include "core/object/object.h"
|
|
|
|
class BBDictionary : public BBParam {
|
|
GDCLASS(BBDictionary, BBParam);
|
|
|
|
protected:
|
|
virtual Variant::Type get_type() const override { return Variant::DICTIONARY; }
|
|
};
|
|
|
|
#endif // BB_DICTIONARY_H
|