2012-08-04 10:54:37 +00:00
|
|
|
// Copyright (C) 2000 Raven Software
|
|
|
|
//
|
|
|
|
// g_groups.h -- local definitions for game module group collections
|
|
|
|
|
2013-09-03 21:01:15 +00:00
|
|
|
#ifndef G_GROUPS_H_
|
|
|
|
#define G_GROUPS_H_
|
|
|
|
|
2012-08-04 10:54:37 +00:00
|
|
|
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);
|
2012-08-04 10:54:37 +00:00
|
|
|
|
|
|
|
#define MAX_SKINS_FOR_RACE 128
|
2013-09-03 21:01:15 +00:00
|
|
|
|
|
|
|
#endif /* G_GROUPS_H_ */
|
|
|
|
|