mirror of
https://github.com/UberGames/RPG-X2.git
synced 2024-12-02 01:02:16 +00:00
19 lines
418 B
C
19 lines
418 B
C
|
// Copyright (C) 2000 Raven Software
|
||
|
//
|
||
|
// g_groups.h -- local definitions for game module group collections
|
||
|
|
||
|
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;
|
||
|
extern char* BG_RegisterRace( const char *name );
|
||
|
extern char *G_searchGroupList(const char *name);
|
||
|
|
||
|
#define MAX_SKINS_FOR_RACE 128
|