limboai/bb_param/bb_int.h

16 lines
255 B
C++

/* bb_int.h */
#ifndef BB_INT_H
#define BB_INT_H
#include "bb_param.h"
#include "core/object.h"
class BBInt : public BBParam {
GDCLASS(BBInt, BBParam);
protected:
virtual Variant::Type get_type() const { return Variant::INT; }
};
#endif // BB_INT_H