mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 01:26:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			329 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			329 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <components/openmw-mp/NetworkMessages.hpp>
 | 
						|
#include <components/openmw-mp/Log.hpp>
 | 
						|
#include "PacketActorTest.hpp"
 | 
						|
 | 
						|
using namespace mwmp;
 | 
						|
 | 
						|
PacketActorTest::PacketActorTest(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
 | 
						|
{
 | 
						|
    packetID = ID_ACTOR_TEST;
 | 
						|
}
 | 
						|
 | 
						|
void PacketActorTest::Actor(BaseActor &actor, bool send)
 | 
						|
{
 | 
						|
 | 
						|
}
 |