Stand/Stand/Components.hpp
2024-10-16 11:20:42 +08:00

15 lines
212 B
C++

#pragma once
#include "fwddecl.hpp"
#include <vector>
namespace Stand
{
struct Components
{
static void addPatterns(PatternBatch& batch);
static void collectHooks(std::vector<DetourHook*>& hooks);
};
}