2022-10-20 16:26:46 +00:00
|
|
|
/* bb_int.h */
|
|
|
|
|
|
|
|
#ifndef BB_INT_H
|
|
|
|
#define BB_INT_H
|
|
|
|
|
|
|
|
#include "bb_param.h"
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/object/object.h"
|
2022-10-20 16:26:46 +00:00
|
|
|
|
|
|
|
class BBInt : public BBParam {
|
|
|
|
GDCLASS(BBInt, BBParam);
|
|
|
|
|
|
|
|
protected:
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual Variant::Type get_type() const override { return Variant::INT; }
|
2022-10-20 16:26:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BB_INT_H
|