mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
11 lines
250 B
C++
11 lines
250 B
C++
#pragma once
|
|
|
|
#include <Geode/utils/Result.hpp>
|
|
#include <tulip/TulipHook.hpp>
|
|
|
|
namespace geode::modifier {
|
|
template <uint32_t Id>
|
|
uintptr_t address();
|
|
|
|
Result<tulip::hook::HandlerMetadata> handlerMetadataForAddress(uintptr_t address);
|
|
}
|