mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- added a user reserved range of statnums from 70-90
This commit is contained in:
parent
f52e767b51
commit
ba9cf02385
2 changed files with 6 additions and 0 deletions
|
@ -61,6 +61,9 @@ enum
|
|||
STAT_MAPMARKER, // Map marker actors
|
||||
STAT_DLIGHT,
|
||||
|
||||
STAT_USER = 70,
|
||||
STAT_USER_MAX = 90,
|
||||
|
||||
STAT_DEFAULT = 100, // Thinkers go here unless specified otherwise.
|
||||
STAT_SECTOREFFECT, // All sector effects that cause floor and ceiling movement
|
||||
STAT_ACTORMOVER, // actor movers
|
||||
|
|
|
@ -385,6 +385,9 @@ class Thinker : Object native play
|
|||
STAT_MAPMARKER, // Map marker actors
|
||||
STAT_DLIGHT, // Dynamic lights
|
||||
|
||||
STAT_USER = 70,
|
||||
STAT_USER_MAX = 90,
|
||||
|
||||
STAT_DEFAULT = 100, // Thinkers go here unless specified otherwise.
|
||||
STAT_SECTOREFFECT, // All sector effects that cause floor and ceiling movement
|
||||
STAT_ACTORMOVER, // actor movers
|
||||
|
|
Loading…
Reference in a new issue