summaryrefslogtreecommitdiff
path: root/src/net/battlegroundhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-18 14:17:57 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-18 14:25:24 +0300
commit2e9147b9ccdc05362af1c4ecba5fcae71195d945 (patch)
tree1010d31f1c69250a69177423dee944add32cec9b /src/net/battlegroundhandler.h
parentf9e82c92f796efe40ebf9bf7477690784f77d3b5 (diff)
downloadManaVerse-2e9147b9ccdc05362af1c4ecba5fcae71195d945.tar.gz
ManaVerse-2e9147b9ccdc05362af1c4ecba5fcae71195d945.tar.bz2
ManaVerse-2e9147b9ccdc05362af1c4ecba5fcae71195d945.tar.xz
ManaVerse-2e9147b9ccdc05362af1c4ecba5fcae71195d945.zip
Fix tarball error.
Diffstat (limited to 'src/net/battlegroundhandler.h')
-rw-r--r--src/net/battlegroundhandler.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/net/battlegroundhandler.h b/src/net/battlegroundhandler.h
new file mode 100644
index 000000000..c84b6c27e
--- /dev/null
+++ b/src/net/battlegroundhandler.h
@@ -0,0 +1,45 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2015 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NET_BATTLEGROUNDHANDLER_H
+#define NET_BATTLEGROUNDHANDLER_H
+
+#ifdef EATHENA_SUPPORT
+
+#include <string>
+
+#include "localconsts.h"
+
+namespace Net
+{
+
+class BattleGroundHandler notfinal
+{
+ public:
+ virtual ~BattleGroundHandler()
+ { }
+};
+
+} // namespace Net
+
+extern Net::BattleGroundHandler *battleGroundHandler;
+
+#endif // EATHENA_SUPPORT
+#endif // NET_BATTLEGROUNDHANDLER_H