
* 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
16 lines
426 B
C++
16 lines
426 B
C++
#pragma once
|
|
|
|
#include "gta/vehicle_values.hpp"
|
|
|
|
namespace big
|
|
{
|
|
class vehicle_helper
|
|
{
|
|
public:
|
|
static bool check_mod_blacklist(Hash model, int mod_slot, int mod);
|
|
static const char* get_mod_slot_name(Hash model, Vehicle vehicle, int mod_slot);
|
|
static const char* get_mod_name(Hash model, Vehicle vehicle, int mod_slot, int mod, int mod_count);
|
|
static void add_clan_logo_to_vehicle(Vehicle vehicle, Ped ped);
|
|
};
|
|
}
|