21 lines
461 B
C
21 lines
461 B
C
#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;
|
|
}
|