mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-19 07:28:04 +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
12 lines
189 B
C++
12 lines
189 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include "fwddec.hpp"
|
|
#include "extensible.hpp"
|
|
#include "vector.hpp"
|
|
#include "gta/natives.hpp"
|
|
|
|
namespace gta
|
|
{
|
|
inline constexpr auto num_players = 32;
|
|
}
|