forked from mirror/openmw-tes3mp
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			397 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			397 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_PLAYERPACKETCONTROLLER_HPP
 | 
						|
#define OPENMW_PLAYERPACKETCONTROLLER_HPP
 | 
						|
 | 
						|
 | 
						|
#include "../Packets/Player/PlayerPacket.hpp"
 | 
						|
#include "BasePacketController.hpp"
 | 
						|
 | 
						|
namespace mwmp
 | 
						|
{
 | 
						|
    class PlayerPacketController: public BasePacketController<PlayerPacket>
 | 
						|
    {
 | 
						|
    public:
 | 
						|
        PlayerPacketController(RakNet::RakPeerInterface *peer);
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif //OPENMW_PLAYERPACKETCONTROLLER_HPP
 |