limboai/bb_param/bb_vector2.h

16 lines
299 B
C
Raw Normal View History

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