26 lines
336 B
C
26 lines
336 B
C
|
#pragma once
|
||
|
|
||
|
#include <osg/Group>
|
||
|
|
||
|
|
||
|
class ChaffBombs : public osg::Group {
|
||
|
public:
|
||
|
ChaffBombs();
|
||
|
|
||
|
META_Node(osg, Group);
|
||
|
|
||
|
Group* asGroup() override {
|
||
|
return this;
|
||
|
}
|
||
|
const Group* asGroup() const override {
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
~ChaffBombs() override;
|
||
|
|
||
|
void Init();
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|