16 lines
269 B
C
16 lines
269 B
C
|
/* bb_plane.h */
|
||
|
|
||
|
#ifndef BB_PLANE_H
|
||
|
#define BB_PLANE_H
|
||
|
|
||
|
#include "bb_param.h"
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class BBPlane : public BBParam {
|
||
|
GDCLASS(BBPlane, BBParam);
|
||
|
|
||
|
protected:
|
||
|
virtual Variant::Type get_type() const { return Variant::PLANE; }
|
||
|
};
|
||
|
|
||
|
#endif // BB_PLANE_H
|