limboai/bb_param/bb_dictionary.h

16 lines
304 B
C
Raw Normal View History

2022-10-20 16:26:46 +00:00
/* 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