mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 23:17:52 +08:00

* chore: Changed detour_hook extension back to cpp * chore(crossmap): split crossmap into header and source file * chore(logger): rename macro's to code style * chore(logger): removed unused local variable * chore(benchmark): changed extension to C++ header * chore: cleanup pickup_rewards file * chore(gta): cleanup code and file naming * chore(CanApplyData): Removed unused code
10 lines
234 B
C++
10 lines
234 B
C++
#pragma once
|
|
#include "gta/natives.hpp"
|
|
|
|
namespace big
|
|
{
|
|
constexpr auto NATIVE_COUNT = 6439;
|
|
using crossmap = std::array<std::pair<rage::scrNativeHash, rage::scrNativeHash>, NATIVE_COUNT>;
|
|
extern const crossmap g_crossmap;
|
|
}
|