limboai/bb_param/bb_quaternion.h

16 lines
314 B
C
Raw Normal View History

2022-10-20 16:26:46 +00:00
/* bb_quat.h */
2022-12-17 13:22:55 +00:00
#ifndef BB_QUATERNION_H
#define BB_QUATERNION_H
2022-10-20 16:26:46 +00:00
#include "bb_param.h"
#include "core/object/object.h"
2022-10-20 16:26:46 +00:00
2022-12-17 13:22:55 +00:00
class BBQuaternion : public BBParam {
GDCLASS(BBQuaternion, BBParam);
2022-10-20 16:26:46 +00:00
protected:
virtual Variant::Type get_type() const override { return Variant::QUATERNION; }
2022-10-20 16:26:46 +00:00
};
2022-12-17 13:22:55 +00:00
#endif // BB_QUATERNION_H