iw7-mod/src/client/component/patches.cpp

26 lines
335 B
C++
Raw Normal View History

2022-05-20 14:59:24 -04:00
#include <std_include.hpp>
#include "loader/component_loader.hpp"
#include "game/game.hpp"
#include <utils/hook.hpp>
#include <utils/string.hpp>
namespace patches
{
namespace
{
2022-06-01 09:55:00 -04:00
2022-05-20 14:59:24 -04:00
}
class component final : public component_interface
{
public:
void post_unpack() override
{
2022-06-01 09:55:00 -04:00
2022-05-20 14:59:24 -04:00
}
};
}
REGISTER_COMPONENT(patches::component)