Add override decls in AIManager
(Done while tracing another crash, but committing separately)
This commit is contained in:
parent
2a31893862
commit
13857e001e
1 changed files with 8 additions and 7 deletions
|
@ -42,13 +42,14 @@ public:
|
|||
FGAIManager();
|
||||
virtual ~FGAIManager();
|
||||
|
||||
void init();
|
||||
virtual void shutdown();
|
||||
void postinit();
|
||||
void reinit();
|
||||
void bind();
|
||||
void unbind();
|
||||
void update(double dt);
|
||||
void init() override;
|
||||
void shutdown() override;
|
||||
void postinit() override;
|
||||
void reinit() override;
|
||||
void bind() override;
|
||||
void unbind() override;
|
||||
void update(double dt) override;
|
||||
|
||||
void updateLOD(SGPropertyNode* node);
|
||||
void attach(FGAIBase *model);
|
||||
|
||||
|
|
Loading…
Reference in a new issue