mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-01 05:05:59 +00: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;
|
|
};
|
|
}
|
|
}
|
|
} |