Committed ACC changes.

SVN r516 (trunk)
This commit is contained in:
Randy Heit 2007-04-22 17:08:17 +00:00
parent 1e63067140
commit d239a69963
3 changed files with 6 additions and 0 deletions

View file

@ -444,6 +444,8 @@ static char *PCDNames[PCODE_COMMAND_COUNT] =
"PCD_GETACTORPITCH",
"PCD_SETACTORPITCH",
"PCD_PRINTBIND",
"PCD_SETACTORSTATE",
"PCD_THINGDAMAGE2",
};
// CODE --------------------------------------------------------------------

View file

@ -394,6 +394,8 @@ typedef enum
PCD_GETACTORPITCH,
PCD_SETACTORPITCH,
PCD_PRINTBIND,
PCD_SETACTORSTATE,
PCD_THINGDAMAGE2,
PCODE_COMMAND_COUNT
} pcd_t;

View file

@ -179,6 +179,8 @@ static internFuncDef_t InternalFunctions[] =
{ "replacetextures", PCD_NOP, PCD_REPLACETEXTURES, 3, 4, 0, NO, NO },
{ "getactorpitch", PCD_NOP, PCD_GETACTORPITCH, 1, 0, 0, YES, NO },
{ "setactorpitch", PCD_NOP, PCD_SETACTORPITCH, 2, 0, 0, NO, NO },
{ "setactorstate", PCD_NOP, PCD_SETACTORSTATE, 3, 4, 0, YES, NO },
{ "thing_damage2", PCD_NOP, PCD_THINGDAMAGE2, 3, 0, 0, YES, NO },
{ NULL, PCD_NOP, PCD_NOP, 0, 0, 0, NO, NO }
};