move the efrag_t to outside the skin model defs

This commit is contained in:
Bill Currie 2001-03-28 03:29:42 +00:00
parent 525a49a24e
commit 3cac9a7e29

View file

@ -35,6 +35,12 @@
//============================================================================= //=============================================================================
/*
skin models
*/
typedef enum typedef enum
{ {
LIGHT_NORMAL, LIGHT_NORMAL,
@ -42,14 +48,6 @@ typedef enum
LIGHT_GLOW, LIGHT_GLOW,
} r_skin_l_e; } r_skin_l_e;
typedef struct efrag_s
{
struct mleaf_s *leaf;
struct efrag_s *leafnext;
struct entity_s *entity;
struct efrag_s *entnext;
} efrag_t;
typedef struct r_tri_s typedef struct r_tri_s
{ {
int vert_indices[3]; int vert_indices[3];
@ -97,6 +95,14 @@ typedef struct r_e_skin_s
r_skin_t *skin; r_skin_t *skin;
} r_e_skin_t; } r_e_skin_t;
typedef struct efrag_s
{
struct mleaf_s *leaf;
struct efrag_s *leafnext;
struct entity_s *entity;
struct efrag_s *entnext;
} efrag_t;
typedef struct r_entity_s typedef struct r_entity_s
{ {
int keynum; // for matching entities in different frames int keynum; // for matching entities in different frames