Skip to content

Commit

Permalink
Clean up entity effects values
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Jul 24, 2024
1 parent 9ce05c2 commit 3f500d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Quake/gl_model.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,6 @@ m*_t structures are in-memory
*/

// entity effects

#define EF_BRIGHTFIELD 1
#define EF_MUZZLEFLASH 2
#define EF_BRIGHTLIGHT 4
#define EF_DIMLIGHT 8
#define EF_QEX_QUADLIGHT 16 // 2021 rerelease
#define EF_QEX_PENTALIGHT 32 // 2021 rerelease
#define EF_QEX_CANDLELIGHT 64 // 2021 rerelease


/*
==============================================================================
Expand Down
3 changes: 3 additions & 0 deletions Quake/server.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,9 @@ typedef enum
EF_MUZZLEFLASH = 2,
EF_BRIGHTLIGHT = 4,
EF_DIMLIGHT = 8,
EF_QEX_QUADLIGHT = 16, // 2021 rerelease
EF_QEX_PENTALIGHT = 32, // 2021 rerelease
EF_QEX_CANDLELIGHT = 64, // 2021 rerelease
} efx_t;

// spawnflags
Expand Down

0 comments on commit 3f500d7

Please sign in to comment.