mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-01 00:45:26 +02:00
* program options parsing via boost::program_options * Stupid AI - a stupid battle-only AI * precompiled headers for server and Stupid AI on MSVC
34 lines
449 B
C++
34 lines
449 B
C++
#include "stdafx.h"
|
|
#include "StupidAI.h"
|
|
|
|
CStupidAI::CStupidAI(void)
|
|
{
|
|
}
|
|
|
|
|
|
CStupidAI::~CStupidAI(void)
|
|
{
|
|
}
|
|
|
|
void CStupidAI::init( IBattleCallback * CB )
|
|
{
|
|
|
|
}
|
|
|
|
void CStupidAI::actionFinished( const BattleAction *action )
|
|
{
|
|
|
|
}
|
|
|
|
void CStupidAI::actionStarted( const BattleAction *action )
|
|
{
|
|
|
|
}
|
|
|
|
BattleAction CStupidAI::activeStack( int stackID )
|
|
{
|
|
BattleAction ba;
|
|
ba.DEFEND;
|
|
ba.stackNumber = stackID;
|
|
return ba;
|
|
} |