mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 18:56:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OPENMW_PACKETACTORANIMPLAY_HPP
 | |
| #define OPENMW_PACKETACTORANIMPLAY_HPP
 | |
| 
 | |
| #include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
 | |
| 
 | |
| namespace mwmp
 | |
| {
 | |
|     class PacketActorAnimPlay : public ActorPacket
 | |
|     {
 | |
|     public:
 | |
|         PacketActorAnimPlay(RakNet::RakPeerInterface *peer);
 | |
| 
 | |
|         virtual void Packet(RakNet::BitStream *bs, bool send);
 | |
|     };
 | |
| }
 | |
| 
 | |
| #endif //OPENMW_PACKETACTORANIMPLAY_HPP
 |