StoneAge/gmsv/npc/readnpc.c

21 lines
461 B
C
Raw Normal View History

2018-08-07 15:51:35 +08:00
#include <stdio.h>
#include <string.h>
#include "version.h"
#include "common.h"
#include "npctemplate.h"
#include "npccreate.h"
BOOL NPC_readNPCSettingFiles( char* topdirectory ,int templatesize, int createsize)
{
print("\n");
if( NPC_readNPCTemplateFiles( topdirectory ,templatesize) == FALSE )
return FALSE;
if( NPC_readNPCCreateFiles( topdirectory ,createsize) == FALSE )
return FALSE;
return TRUE;
}