d2tweaks-rnd2k/include/d2tweaks/client/modules/small_patches/small_patches.h

17 lines
342 B
C
Raw Normal View History

2024-04-17 03:45:38 +00:00
#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;
};
}
}
}