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