rpgxef/code/game/g_groups.h
Walter Julius Hennecke a39565b783 Integrated RPG-X2 rpgxEF edition into the rpgxEF repo
... 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)
2012-08-04 12:54:37 +02:00

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