You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
600 B
C++
24 lines
600 B
C++
#ifndef OPENMW_ESSIMPORT_CONVERTACDT_H
|
|
#define OPENMW_ESSIMPORT_CONVERTACDT_H
|
|
|
|
#include <components/esm/creaturestats.hpp>
|
|
#include <components/esm/npcstats.hpp>
|
|
#include <components/esm/loadskil.hpp>
|
|
|
|
#include "importacdt.hpp"
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
// OpenMW uses Health,Magicka,Fatigue, MW uses Health,Fatigue,Magicka
|
|
int translateDynamicIndex(int mwIndex);
|
|
|
|
|
|
void convertACDT (const ACDT& acdt, ESM::CreatureStats& cStats);
|
|
void convertACSC (const ACSC& acsc, ESM::CreatureStats& cStats);
|
|
|
|
void convertNpcData (const ActorData& actorData, ESM::NpcStats& npcStats);
|
|
}
|
|
|
|
#endif
|