limboai/bb_param/bb_transform3d.h

16 lines
325 B
C
Raw Normal View History

2022-10-20 16:26:46 +00:00
/* bb_transform.h */
2022-12-17 13:22:55 +00:00
#ifndef BB_TRANSFORM3D_H
#define BB_TRANSFORM3D_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 BBTransform3D : public BBParam {
GDCLASS(BBTransform3D, BBParam);
2022-10-20 16:26:46 +00:00
protected:
virtual Variant::Type get_type() const override { return Variant::TRANSFORM3D; }
2022-10-20 16:26:46 +00:00
};
2022-12-17 13:22:55 +00:00
#endif // BB_TRANSFORM3D_H