rpgxef/code/game/g_groups.h

24 lines
460 B
C
Raw Normal View History

// Copyright (C) 2000 Raven Software
//
// g_groups.h -- local definitions for game module group collections
#ifndef G_GROUPS_H_
#define G_GROUPS_H_
typedef struct
{
char name[128];
char text[128];
} group_list_t;
#define MAX_GROUP_MEMBERS 1024
extern group_list_t group_list[MAX_GROUP_MEMBERS];
extern int group_count;
2013-05-24 20:11:53 +00:00
/*@shared@*/ /*@null@*/ extern char *G_searchGroupList(const char *name);
#define MAX_SKINS_FOR_RACE 128
#endif /* G_GROUPS_H_ */