summaryrefslogtreecommitdiff
path: root/src/npc.h
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2006-08-26 17:24:43 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2006-08-26 17:24:43 +0000
commit07b6070c25faedd78c2e26825bd700dc294f00cf (patch)
tree6a3053ad2a88ee6f0091fafba6607bc82231f7f6 /src/npc.h
parent00d7badb647b4293c444c0374985b7f1ea8a1ed1 (diff)
downloadmana-client-07b6070c25faedd78c2e26825bd700dc294f00cf.tar.gz
mana-client-07b6070c25faedd78c2e26825bd700dc294f00cf.tar.bz2
mana-client-07b6070c25faedd78c2e26825bd700dc294f00cf.tar.xz
mana-client-07b6070c25faedd78c2e26825bd700dc294f00cf.zip
Made the Network class a purely static interface, as there is only one instance.
Diffstat (limited to 'src/npc.h')
-rw-r--r--src/npc.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/npc.h b/src/npc.h
index b08c315c..bbc86d9c 100644
--- a/src/npc.h
+++ b/src/npc.h
@@ -26,12 +26,10 @@
#include "being.h"
-class Network;
-
class NPC : public Being
{
public:
- NPC(Uint32 id, Uint16 job, Map *map, Network *network);
+ NPC(Uint32 id, Uint16 job, Map *map);
virtual Type getType() const;
@@ -41,9 +39,6 @@ class NPC : public Being
void buy();
void sell();
-
- protected:
- Network *mNetwork;
};
extern NPC *current_npc;