- ACC related parts of SetMugShot addition.

SVN r813 (trunk)
This commit is contained in:
Christoph Oelckers 2008-03-19 09:53:57 +00:00
parent 1a09a82355
commit dd20e4aaf9
3 changed files with 3 additions and 0 deletions

View file

@ -451,6 +451,7 @@ static char *PCDNames[PCODE_COMMAND_COUNT] =
"PCD_CHECKACTORCEILINGTEXTURE",
"PCD_CHECKACTORFLOORTEXTURE",
"PCD_GETACTORLIGHTLEVEL",
"PCD_SETMUGSHOTSTATE",
};
// CODE --------------------------------------------------------------------

View file

@ -402,6 +402,7 @@ typedef enum
PCD_CHECKACTORCEILINGTEXTURE,
PCD_CHECKACTORFLOORTEXTURE,
PCD_GETACTORLIGHTLEVEL,
PCD_SETMUGSHOTSTATE,
PCODE_COMMAND_COUNT
} pcd_t;

View file

@ -186,6 +186,7 @@ static internFuncDef_t InternalFunctions[] =
{ "checkactorceilingtexture", PCD_NOP, PCD_CHECKACTORCEILINGTEXTURE, 2, 0, 0, YES, NO },
{ "checkactorfloortexture", PCD_NOP, PCD_CHECKACTORFLOORTEXTURE, 2, 0, 0, YES, NO },
{ "getactorlightlevel", PCD_NOP, PCD_GETACTORLIGHTLEVEL, 1, 0, 0, YES, NO },
{ "setmugshotstate", PCD_NOP, PCD_SETMUGSHOTSTATE, 1, 0, 0, NO, NO },
{ NULL, PCD_NOP, PCD_NOP, 0, 0, 0, NO, NO }
};