mirror of
https://github.com/UberGames/rpgxEF.git
synced 2024-11-10 15:21:34 +00:00
a39565b783
... not quite content with where the project files lie but it is ok for now. ... compiling works fine so far (only tested mingw32 right now)
18 lines
418 B
C
18 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
|