mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-02 05:42:35 +00:00
move the efrag_t to outside the skin model defs
This commit is contained in:
parent
525a49a24e
commit
3cac9a7e29
1 changed files with 14 additions and 8 deletions
|
@ -35,6 +35,12 @@
|
|||
|
||||
//=============================================================================
|
||||
|
||||
/*
|
||||
|
||||
skin models
|
||||
|
||||
*/
|
||||
|
||||
typedef enum
|
||||
{
|
||||
LIGHT_NORMAL,
|
||||
|
@ -42,14 +48,6 @@ typedef enum
|
|||
LIGHT_GLOW,
|
||||
} 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
|
||||
{
|
||||
int vert_indices[3];
|
||||
|
@ -97,6 +95,14 @@ typedef struct r_e_skin_s
|
|||
r_skin_t *skin;
|
||||
} 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
|
||||
{
|
||||
int keynum; // for matching entities in different frames
|
||||
|
|
Loading…
Reference in a new issue