mirror of
https://github.com/ZDoom/acc.git
synced 2025-03-13 03:42:17 +00:00
- Add ClassifyActor pcode to ACC.
SVN r1309 (trunk)
This commit is contained in:
parent
ef63d00f3c
commit
65ed9f744a
3 changed files with 4 additions and 1 deletions
3
pcode.c
3
pcode.c
|
@ -457,7 +457,8 @@ static char *PCDNames[PCODE_COMMAND_COUNT] =
|
|||
"PCD_CHECKPLAYERCAMERA",
|
||||
"PCD_MORPHACTOR",
|
||||
"PCD_UNMORPHACTOR",
|
||||
"PCD_GETPLAYERINPUT"
|
||||
"PCD_GETPLAYERINPUT",
|
||||
"PCD_CLASSIFYACTOR"
|
||||
};
|
||||
|
||||
// CODE --------------------------------------------------------------------
|
||||
|
|
1
pcode.h
1
pcode.h
|
@ -409,6 +409,7 @@ typedef enum
|
|||
PCD_MORPHACTOR,
|
||||
PCD_UNMORPHACTOR,
|
||||
PCD_GETPLAYERINPUT,
|
||||
PCD_CLASSIFYACTOR,
|
||||
|
||||
PCODE_COMMAND_COUNT
|
||||
} pcd_t;
|
||||
|
|
1
symbol.c
1
symbol.c
|
@ -193,6 +193,7 @@ static internFuncDef_t InternalFunctions[] =
|
|||
{ "morphactor", PCD_NOP, PCD_MORPHACTOR, 7, 2|4|8|16|32|64, 0, YES, NO },
|
||||
{ "unmorphactor", PCD_NOP, PCD_UNMORPHACTOR, 2, 2, 0, YES, NO },
|
||||
{ "getplayerinput", PCD_NOP, PCD_GETPLAYERINPUT, 2, 0, 0, YES, NO },
|
||||
{ "classifyactor", PCD_NOP, PCD_CLASSIFYACTOR, 1, 0, 0, YES, NO },
|
||||
|
||||
{ NULL, PCD_NOP, PCD_NOP, 0, 0, 0, NO, NO }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue