Initial commit

This commit is contained in:
Hash Borgir
2024-04-16 21:45:38 -06:00
commit 3159020c38
533 changed files with 135446 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include <d2tweaks/server/modules/server_module.h>
namespace d2_tweaks {
namespace server {
class server;
namespace modules {
class item_drop_message final : public server_module {
public:
void init() override;
void tick(diablo2::structures::game* game, diablo2::structures::unit* unit) override;
bool handle_packet(diablo2::structures::game* game, diablo2::structures::unit* player, common::packet_header* packet) override;
};
}
}
}