-- This is a copy/paste and shouldn't have any impact on the logic. I just moved some functions from AIPlayer to AIPlayerBaka - Added back the possibility to select a different Resource folder with file Res.txt - Fix a crash when a token id does not exist
18 lines
407 B
C++
18 lines
407 B
C++
#ifndef _AIMOMIRPLAYER_H_
|
|
#define _AIMOMIRPLAYER_H_
|
|
|
|
#include "AIPlayerBaka.h"
|
|
|
|
class AIMomirPlayer: public AIPlayerBaka
|
|
{
|
|
public:
|
|
AIMomirPlayer(string file, string fileSmall, string avatarFile, MTGDeck * deck = NULL);
|
|
int getEfficiency(OrderedAIAction * action);
|
|
int momir();
|
|
int computeActions();
|
|
static MTGAbility * momirAbility;
|
|
static MTGAbility * getMomirAbility();
|
|
};
|
|
|
|
#endif
|