2021-05-15 21:04:26 +02:00
|
|
|
/*
|
|
|
|
* Behavior.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
2021-05-15 18:23:05 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../VCAI.h"
|
2021-05-16 13:38:26 +02:00
|
|
|
#error REMOVE THIS FILE
|
2021-05-15 18:23:05 +02:00
|
|
|
|
2021-05-16 13:38:26 +02:00
|
|
|
class Behavior : public Goals::AbstractGoal
|
2021-05-15 18:23:05 +02:00
|
|
|
{
|
2021-05-15 18:23:11 +02:00
|
|
|
public:
|
|
|
|
virtual std::string toString() const = 0;
|
2021-05-15 21:04:26 +02:00
|
|
|
};
|