mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 21:26:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			434 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			434 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OPENMW_ESSIMPORT_CONVERTPLAYER_H
 | |
| #define OPENMW_ESSIMPORT_CONVERTPLAYER_H
 | |
| 
 | |
| #include "importplayer.hpp"
 | |
| 
 | |
| #include <components/esm/player.hpp>
 | |
| #include <components/esm/controlsstate.hpp>
 | |
| 
 | |
| namespace ESSImport
 | |
| {
 | |
| 
 | |
|     void convertPCDT(const PCDT& pcdt, ESM::Player& out, std::vector<std::string>& outDialogueTopics, bool& firstPersonCam, bool& teleportingEnabled, bool& levitationEnabled, ESM::ControlsState& controls);
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif
 |