2022-10-20 16:26:46 +00:00
|
|
|
/* bb_basis.h */
|
|
|
|
|
|
|
|
#ifndef BB_BASIS_H
|
|
|
|
#define BB_BASIS_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 BBBasis : public BBParam {
|
|
|
|
GDCLASS(BBBasis, BBParam);
|
|
|
|
|
|
|
|
protected:
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual Variant::Type get_type() const override { return Variant::BASIS; }
|
2022-10-20 16:26:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BB_BASIS_H
|