mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +00:00
15 lines
309 B
C++
15 lines
309 B
C++
#ifndef OPENMW_ESSIMPORT_CONVERTPLAYER_H
|
|
#define OPENMW_ESSIMPORT_CONVERTPLAYER_H
|
|
|
|
#include "importplayer.hpp"
|
|
|
|
#include <components/esm/player.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void convertPCDT(const PCDT& pcdt, ESM::Player& out, std::vector<std::string>& outDialogueTopics, bool& firstPersonCam);
|
|
|
|
}
|
|
|
|
#endif
|