summaryrefslogtreecommitdiffstats
path: root/ai.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ai.hpp')
-rw-r--r--ai.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/ai.hpp b/ai.hpp
index 0b757c9..ec1f56b 100644
--- a/ai.hpp
+++ b/ai.hpp
@@ -13,8 +13,7 @@ public:
void GetBestMove(int &my, int &mx, GameField field);
private:
int score(GameField field);
- int min(GameField field, int depth);
- int max(GameField field, int depth);
+ int MinMax(GameField field, int depth);
};
#endif /* LPG_AI_H */