diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-25 10:30:18 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-25 10:30:18 +0000 |
commit | ce4dec28c1432769ee19d84f77cd484c5d143200 (patch) | |
tree | a212aaefa78650cb7d8122df158afbfb4321295e /src/gui/npc.h | |
parent | aa34695e10cf3051a28ab490827b548d4c233d1b (diff) | |
download | mana-client-ce4dec28c1432769ee19d84f77cd484c5d143200.tar.gz mana-client-ce4dec28c1432769ee19d84f77cd484c5d143200.tar.bz2 mana-client-ce4dec28c1432769ee19d84f77cd484c5d143200.tar.xz mana-client-ce4dec28c1432769ee19d84f77cd484c5d143200.zip |
* Huge formatting changes and some attempts in simplifying graphics code.
* Use of STL vector in npc.cpp
Diffstat (limited to 'src/gui/npc.h')
-rw-r--r-- | src/gui/npc.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gui/npc.h b/src/gui/npc.h index f94ac61b..a0828a9a 100644 --- a/src/gui/npc.h +++ b/src/gui/npc.h @@ -17,16 +17,13 @@ * You should have received a copy of the GNU General Public License * along with The Mana World; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * By ElvenProgrammer aka Eugenio Favalli (umperio@users.sourceforge.net) */ #ifndef _NPC_H #define _NPC_H struct ITEM { - char *name; - ITEM *next; + char *name; }; char *item_list(int index, int *list_size); |