summaryrefslogtreecommitdiff
path: root/engine-ocean/Game/Systems/AI/Actions/btaction.h
blob: 180f72c52e5cda5f4a83d29d15757d21af9dccda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef BTACTION_H
#define BTACTION_H
#include "Game/Systems/AI/btnode.h"

class BTAction : public BTNode
{
public:
    BTAction();
    virtual Status update(float seconds) = 0;
    virtual void reset() = 0;

private:
    Status m_status;

};

#endif // BTACTION_H