summaryrefslogtreecommitdiff
path: root/src/net/maphandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/maphandler.h')
-rw-r--r--src/net/maphandler.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/maphandler.h b/src/net/maphandler.h
index e5157fc6..be33e074 100644
--- a/src/net/maphandler.h
+++ b/src/net/maphandler.h
@@ -25,17 +25,17 @@
#include <iosfwd>
namespace Net {
- class MapHandler
- {
- public:
- void connect() {}
+class MapHandler
+{
+ public:
+ virtual void connect() {}
- void mapLoaded(const std::string &mapName) {}
+ virtual void mapLoaded(const std::string &mapName) {}
- void who() {}
+ virtual void who() {}
- void quit() {}
- };
+ virtual void quit() {}
+};
}
#endif // MAPHANDLER_H