This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/crossmap.hpp

10 lines
241 B
C++
Raw Normal View History

#pragma once
#include "gta/natives.hpp"
namespace big
{
2023-09-22 17:16:33 -04:00
constexpr auto NATIVE_COUNT = 6495;
using crossmap = std::array<std::pair<rage::scrNativeHash, rage::scrNativeHash>, NATIVE_COUNT>;
extern const crossmap g_crossmap;
}