/* vi: set ts=2: +-------------------+ Christian Schlittchen | | Enno Rehling | Eressea PBEM host | Katja Zedel | (c) 1998 - 2001 | Henning Peters | | Ingo Wilken +-------------------+ Stefan Reich This program may not be used, modified or distributed without prior permission by the authors of Eressea. $Id: ugroup.h,v 1.1 2001/04/28 12:03:12 corwin Exp $ */ #ifndef UGROUP_H #define UGROUP_H /* Globale Liste ugroups. Bei jeder unit u->ugroup zeigt auf aktuelle Gruppe. Gruppen mit members <= 1 werden vor den Reports aufgelöst. */ typedef struct ugroup { struct ugroup *next; int id; int members; unit **unit_array; } ugroup; #endif