diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2009-10-06 23:40:55 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2009-10-06 23:43:40 +0200 |
commit | 64a37da4cb8d74a29f369e96e8c3669275516394 (patch) | |
tree | caa0eb0d05ab5674b6b6ac822d151aa2585721e8 /src/net/worldinfo.h | |
parent | 610dc30ceecdfe538f71826689630e0f28c278cc (diff) | |
download | mana-64a37da4cb8d74a29f369e96e8c3669275516394.tar.gz mana-64a37da4cb8d74a29f369e96e8c3669275516394.tar.bz2 mana-64a37da4cb8d74a29f369e96e8c3669275516394.tar.xz mana-64a37da4cb8d74a29f369e96e8c3669275516394.zip |
Some cleanup regarding keeping track of gender for eAthena
LoginHandler now owns the world list and the token, instead of having
them as global variables with pointers to the 'sex' member of the token
from the GUI.
Diffstat (limited to 'src/net/worldinfo.h')
-rw-r--r-- | src/net/worldinfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/worldinfo.h b/src/net/worldinfo.h index 045c64c2..72ecddd6 100644 --- a/src/net/worldinfo.h +++ b/src/net/worldinfo.h @@ -25,13 +25,13 @@ #include <string> #include <vector> -typedef struct { +struct WorldInfo { int address; std::string name; short port; short online_users; std::string updateHost; -} WorldInfo; +}; typedef std::vector<WorldInfo*> Worlds; |