]> git.pond.sub.org Git - empserver/blobdiff - include/item.h
Fix trailing whitespace
[empserver] / include / item.h
index 65f22809161af04b5eba439cb2c2bbb9411618e5..ccd17077eb816c0e28d581440cde5ab12e3ee521 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -26,9 +26,9 @@
  *  ---
  *
  *  item.h: Definitions for item characteristics stuff
- * 
+ *
  *  Known contributors to this file:
- *  
+ *
  */
 
 #ifndef ITEM_H
 
 #include "misc.h"
 
-typedef enum {
+enum i_packing {
     IPKG,                      /* "inefficient" packaging (eff<60) */
     NPKG,                      /* no special packaging */
     WPKG,                      /* "warehouse" packaging */
     UPKG,                      /* "urban" packaging */
     BPKG                       /* "bank" packaging */
-} i_packing;
+};
 
 enum {
     NUMPKG = BPKG + 1
@@ -69,7 +69,7 @@ typedef enum {
 
 struct ichrstr {
     char i_mnem;               /* usually the initial letter */
-    i_type i_vtype;            /* var type */
+    i_type i_uid;              /* index in ichr[] */
     int i_value;               /* mortgage value */
     int i_sell;                        /* can this be sold? */
     int i_lbs;                 /* how hard to move */