mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
19 lines
529 B
C++
19 lines
529 B
C++
#pragma once
|
|
|
|
#include "ECS/Public/ISystem.h"
|
|
#include "Behaviors/IBehavior.h"
|
|
|
|
namespace ECS
|
|
{
|
|
class BehaviorProcessorSystem : public ISystem
|
|
{
|
|
virtual const char* GetName() override;
|
|
virtual int GetPriorityOrder() override;
|
|
virtual void Startup() override;
|
|
virtual void Update(float delta) override;
|
|
virtual void Shutdown() override;
|
|
};
|
|
|
|
// TODO: Move to an appropriate location
|
|
std::vector<AI::BehaviorTree> CreateMeccBehaviorTrees(std::shared_ptr<Entity> entity);
|
|
} |