mirror of
https://github.com/ZDoom/acc.git
synced 2025-03-13 03:42:17 +00:00
Woops. zdefs.acs was missing the PLAYERINFO #defines. And since 1.43 was already
uploaded to the site, I bumped the version to identify this as a changed release. SVN r323 (trunk)
This commit is contained in:
parent
9bac8d0da2
commit
c76f35ca47
3 changed files with 14 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -18,7 +18,7 @@ endif
|
|||
|
||||
CFLAGS = -Os -Wall -W -fomit-frame-pointer
|
||||
LDFLAGS = -s
|
||||
VERNUM = 143
|
||||
VERNUM = 144
|
||||
|
||||
OBJS = \
|
||||
acc.o \
|
||||
|
|
2
acc.c
2
acc.c
|
@ -22,7 +22,7 @@
|
|||
|
||||
// MACROS ------------------------------------------------------------------
|
||||
|
||||
#define VERSION_TEXT "1.43"
|
||||
#define VERSION_TEXT "1.44"
|
||||
#define COPYRIGHT_YEARS_TEXT "1995"
|
||||
|
||||
// TYPES -------------------------------------------------------------------
|
||||
|
|
12
zdefs.acs
12
zdefs.acs
|
@ -200,6 +200,18 @@
|
|||
#define LEVELINFO_KILLED_MONSTERS 8
|
||||
#define LEVELINFO_SUCK_TIME 9
|
||||
|
||||
// Properties you can use with GetPlayerInfo() ------------------------------
|
||||
|
||||
#define PLAYERINFO_TEAM 0
|
||||
#define PLAYERINFO_AIMDIST 1
|
||||
#define PLAYERINFO_COLOR 2
|
||||
#define PLAYERINFO_GENDER 3
|
||||
#define PLAYERINFO_NEVERSWITCH 4
|
||||
#define PLAYERINFO_MOVEBOB 5
|
||||
#define PLAYERINFO_STILLBOB 6
|
||||
#define PLAYERINFO_PLAYERCLASS 7
|
||||
|
||||
|
||||
// Flags for ReplaceTextures ------------------------------------------------
|
||||
|
||||
#define NOT_BOTTOM 1
|
||||
|
|
Loading…
Reference in a new issue