#ifndef __NECRO_
#define __NECRO_

/*
 * $Header: /blue/homes/cowell/src/nec/RCS/necro.h,v 1.1 1996/04/20 21:07:37 cowell Exp cowell $
 *
 * necro.h
 * Copyright Andy Cowell <cowell@cs.utk.edu>, all rights reserved.
 *
 * $Log: necro.h,v $
 * Revision 1.1  1996/04/20  21:07:37  cowell
 * Initial revision
 *
 *
 */

static char *rcsid_necrohdr = "$Id: necro.h,v 1.1 1996/04/20 21:07:37 cowell Exp cowell $";
static char *progname = "the Sumper";

struct _member {
    char *name, *pos;
    int m, ws, bs, s, t, w, i, a, ld;
    char *injuries, *equipment, *skills;
    int cost, exp;
    char *gang_name;
    struct _member *next;
};

struct _gang {
    char *name;
    int rating;
    char *ttory;
    int stash;
    char *hoard;
    struct _member *member;
    struct _gang *next;
};

#endif

