summaryrefslogtreecommitdiff
path: root/src/game-server/thing.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-03-11 14:56:50 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-03-12 17:52:42 +0100
commit0e2a9c41c5b14f3037c8df8e6deddba63fa7120e (patch)
tree7e4875ddec8e8e96de505e5459f4950b17c3a38a /src/game-server/thing.h
parentba57aa3eedf09f32a1ed003ce26ca54666796aef (diff)
downloadmanaserv-0e2a9c41c5b14f3037c8df8e6deddba63fa7120e.tar.gz
manaserv-0e2a9c41c5b14f3037c8df8e6deddba63fa7120e.tar.bz2
manaserv-0e2a9c41c5b14f3037c8df8e6deddba63fa7120e.tar.xz
manaserv-0e2a9c41c5b14f3037c8df8e6deddba63fa7120e.zip
Removed a bunch of silly documentation
A C++ developer should be able to recognize a constructor and a destructor by just looking at it, so let's stop writing down the obvious. :)
Diffstat (limited to 'src/game-server/thing.h')
-rw-r--r--src/game-server/thing.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/game-server/thing.h b/src/game-server/thing.h
index 437980bd..a8a58a04 100644
--- a/src/game-server/thing.h
+++ b/src/game-server/thing.h
@@ -36,9 +36,6 @@ class MapComposite;
class Thing
{
public:
- /**
- * Constructor.
- */
Thing(ThingType type, MapComposite *map = NULL)
: mMap(map),
mType(type)