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