mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
C-CON: Add getpv and setpv as short forms for get/setplayervar, and #include as an alternate for include.
git-svn-id: https://svn.eduke32.com/eduke32@5531 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f403d6234c
commit
d4dc72bac4
1 changed files with 3 additions and 0 deletions
|
@ -127,6 +127,7 @@ typedef struct {
|
|||
const tokenmap_t altkeyw [] =
|
||||
{
|
||||
{ "#define", CON_DEFINE },
|
||||
{ "#include", CON_INCLUDE },
|
||||
{ "al", CON_ADDLOGVAR },
|
||||
{ "var", CON_GAMEVAR },
|
||||
{ "array", CON_GAMEARRAY },
|
||||
|
@ -158,6 +159,7 @@ const tokenmap_t altkeyw [] =
|
|||
{ "abs", CON_KLABS },
|
||||
|
||||
{ "getp", CON_GETPLAYER },
|
||||
{ "getpv", CON_GETPLAYERVAR },
|
||||
{ "gets", CON_GETSECTOR },
|
||||
{ "geta", CON_GETACTOR },
|
||||
{ "getav", CON_GETACTORVAR },
|
||||
|
@ -166,6 +168,7 @@ const tokenmap_t altkeyw [] =
|
|||
{ "geti", CON_GETINPUT },
|
||||
|
||||
{ "setp", CON_SETPLAYER },
|
||||
{ "setpv", CON_SETPLAYERVAR },
|
||||
{ "sets", CON_SETSECTOR },
|
||||
{ "seta", CON_SETACTOR },
|
||||
{ "setav", CON_SETACTORVAR },
|
||||
|
|
Loading…
Reference in a new issue