mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 02:56:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			414 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			414 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <components/openmw-mp/NetworkMessages.hpp>
 | 
						|
#include "PacketObjectCollision.hpp"
 | 
						|
 | 
						|
using namespace mwmp;
 | 
						|
 | 
						|
PacketObjectCollision::PacketObjectCollision(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
 | 
						|
{
 | 
						|
    packetID = ID_OBJECT_COLLISION;
 | 
						|
    hasCellData = true;
 | 
						|
}
 | 
						|
 | 
						|
void PacketObjectCollision::Object(WorldObject &worldObject, bool send)
 | 
						|
{
 | 
						|
    WorldPacket::Object(worldObject, send);
 | 
						|
    // Placeholder
 | 
						|
}
 |