mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
36 lines
767 B
C++
36 lines
767 B
C++
#pragma once
|
|
|
|
namespace big
|
|
{
|
|
class script_local
|
|
{
|
|
public:
|
|
explicit script_local(rage::scrThread* thread, std::size_t index);
|
|
explicit script_local(PVOID stack, std::size_t index);
|
|
explicit script_local(std::size_t index);
|
|
|
|
script_local set(rage::scrThread* thread);
|
|
script_local set(void* stack);
|
|
|
|
script_local at(std::ptrdiff_t index);
|
|
script_local at(std::ptrdiff_t index, std::size_t size);
|
|
|
|
template<typename T>
|
|
std::enable_if_t<std::is_pointer_v<T>, T> as()
|
|
{
|
|
return static_cast<T>(get());
|
|
}
|
|
|
|
template<typename T>
|
|
std::enable_if_t<std::is_lvalue_reference_v<T>, T> as()
|
|
{
|
|
return *static_cast<std::add_pointer_t<std::remove_reference_t<T>>>(get());
|
|
}
|
|
|
|
private:
|
|
void* get();
|
|
std::size_t m_index;
|
|
PVOID m_stack;
|
|
};
|
|
}
|