summaryrefslogtreecommitdiffstats
path: root/pokebattle/Bot.h
diff options
context:
space:
mode:
Diffstat (limited to 'pokebattle/Bot.h')
-rw-r--r--pokebattle/Bot.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/pokebattle/Bot.h b/pokebattle/Bot.h
index 87f6d1d0..8fb77eef 100644
--- a/pokebattle/Bot.h
+++ b/pokebattle/Bot.h
@@ -25,6 +25,8 @@
// Standard library includes
#include <climits>
+namespace Pokebattle
+{
class Bot : public Team
{
Q_OBJECT
@@ -32,5 +34,6 @@ class Bot : public Team
private:
long alphaBeta(const Arena& arena, const int trainerClass, const long alpha = LONG_MIN, const long beta = LONG_MAX);
};
+}
#endif