This commit is contained in:
Paul 2001-01-05 19:25:07 +00:00
parent 85076e653d
commit e1411394cb
12 changed files with 154 additions and 48 deletions

View file

@ -61,10 +61,15 @@ struct FunctionDef
---- */
static FunctionDef s_functionNames[]=
{
{ "setCharacterAnimation", 2 }, // character,animation
{ "setText", 1 }, // textId
{ "drawSprite", 4 }, // frame,x,y,ot
{ "getFrameTime", 0 }, //
{ "setCharacterAnimation", 2 }, // characterId,animationId
{ "setText", 1 }, // textId
{ "giveItem", 1 }, // itemId
{ "gotItem", 1 }, // itemId
{ "setResponseOptions", 1 }, // optionsId
{ "getResponse", 0 }, //
{ "drawSprite", 4 }, // frame,x,y,ot
{ "getFrameTime", 0 }, //
};
static int s_functionCount=sizeof(s_functionNames)/sizeof(FunctionDef);