limboai/bb_param/bb_string.h

16 lines
292 B
C
Raw Normal View History

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