1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-16 10:19:47 +02:00
vcmi/AI/Nullkiller/Behaviors/Behavior.h

10 lines
147 B
C
Raw Normal View History

#pragma once
#include "../VCAI.h"
class Behavior
{
public:
virtual Goals::TGoalVec getTasks() = 0;
virtual std::string toString() const = 0;
};