d2tweaks-rnd2k/include/d2tweaks/client/modules/small_patches/small_patches.h
2024-04-16 21:45:38 -06:00

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;
};
}
}
}