mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-03-01 14:47:48 +00:00
Modify file structure
This commit is contained in:
20
src/strategy/rpg/NewRpgTriggers.h
Normal file
20
src/strategy/rpg/NewRpgTriggers.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef _PLAYERBOT_NEWRPGTRIGGERS_H
|
||||
#define _PLAYERBOT_NEWRPGTRIGGERS_H
|
||||
|
||||
#include "NewRpgStrategy.h"
|
||||
#include "Trigger.h"
|
||||
|
||||
class NewRpgStatusTrigger : public Trigger
|
||||
{
|
||||
public:
|
||||
NewRpgStatusTrigger(PlayerbotAI* botAI, NewRpgStatus status = NewRpgStatus::IDLE)
|
||||
: Trigger(botAI, "new rpg status"), status(status)
|
||||
{
|
||||
}
|
||||
bool IsActive() override;
|
||||
|
||||
protected:
|
||||
NewRpgStatus status;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user