2015-01-30 21:56:03 +00:00
|
|
|
#ifndef OPENMW_ESSIMPORT_CONVERTPLAYER_H
|
|
|
|
#define OPENMW_ESSIMPORT_CONVERTPLAYER_H
|
|
|
|
|
|
|
|
#include "importplayer.hpp"
|
|
|
|
|
2022-01-22 14:58:41 +00:00
|
|
|
#include <components/esm3/controlsstate.hpp>
|
|
|
|
#include <components/esm3/player.hpp>
|
2015-01-30 21:56:03 +00:00
|
|
|
|
|
|
|
namespace ESSImport
|
|
|
|
{
|
|
|
|
|
2022-10-06 17:39:46 +00:00
|
|
|
void convertPCDT(const PCDT& pcdt, ESM::Player& out, std::vector<ESM::RefId>& outDialogueTopics,
|
2016-10-20 12:38:18 +00:00
|
|
|
bool& firstPersonCam, bool& teleportingEnabled, bool& levitationEnabled, ESM::ControlsState& controls);
|
2015-01-30 21:56:03 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|