mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-01 00:45:26 +02:00
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;
|
||
|
}
|