mirror of
				https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
				synced 2025-10-30 16:43:38 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			349 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			349 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <d2tweaks/client/modules/client_module.h>
 | |
| 
 | |
| //Test client side module
 | |
| 
 | |
| namespace d2_tweaks {
 | |
| 	namespace client {
 | |
| 		namespace modules {
 | |
| 			class test final : public client_module {
 | |
| 			public:
 | |
| 				void init() override;
 | |
| 				void init_early() override;
 | |
| 				void handle_packet(common::packet_header* packet) override;
 | |
| 			};
 | |
| 		}
 | |
| 	}
 | |
| } |