mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-11-30 20:55:59 +00:00
19 lines
443 B
C++
19 lines
443 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <d2tweaks/client/modules/client_module.h>
|
|
|
|
namespace d2_tweaks {
|
|
namespace client {
|
|
namespace modules {
|
|
class trader_update final : public client_module {
|
|
public:
|
|
void init() override;
|
|
void init_early() override;
|
|
void handle_packet(common::packet_header* packet) override;
|
|
void handle_cs_packet(common::packet_header* packet) override;
|
|
void tick() override;
|
|
};
|
|
}
|
|
}
|
|
} |