26 lines
335 B
C++
26 lines
335 B
C++
#include <std_include.hpp>
|
|
#include "loader/component_loader.hpp"
|
|
|
|
#include "game/game.hpp"
|
|
|
|
#include <utils/hook.hpp>
|
|
#include <utils/string.hpp>
|
|
|
|
namespace patches
|
|
{
|
|
namespace
|
|
{
|
|
|
|
}
|
|
|
|
class component final : public component_interface
|
|
{
|
|
public:
|
|
void post_unpack() override
|
|
{
|
|
|
|
}
|
|
};
|
|
}
|
|
|
|
REGISTER_COMPONENT(patches::component) |