mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-11-30 20:55:59 +00:00
17 lines
342 B
C
17 lines
342 B
C
|
#pragma once
|
||
|
|
||
|
#include <d2tweaks/client/modules/client_module.h>
|
||
|
|
||
|
//Client side patches that are too small to implement as separate modules
|
||
|
|
||
|
namespace d2_tweaks {
|
||
|
namespace client {
|
||
|
namespace modules {
|
||
|
class small_patches final : public client_module {
|
||
|
public:
|
||
|
void init() override;
|
||
|
void init_early() override;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|