Add more spoofing options and added clang-format (#1020)
* feat(Spoofing): add spoofing * feat(Spoofing): prepare code for player attach * remove(PlayerAttach): isn't going to work due to netsync architecture * fix(GUI): fix scaling * feat(Project): add clang-format file * feat(Classes): update classes * fix(BlackHole): remove unnecessary cleanup * fix(Formatting): fix formatting for initializer lists * feat(clang-format): Set tab width and 1 space before comment Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
#include "natives.hpp"
|
||||
#include "model_attachment.hpp"
|
||||
#include "natives.hpp"
|
||||
|
||||
namespace big
|
||||
{
|
||||
@ -14,32 +14,32 @@ namespace big
|
||||
static Vehicle load_vehicle(std::string_view file_name);
|
||||
|
||||
private:
|
||||
static constexpr auto model_attachment_key = "model_attachment";
|
||||
static constexpr auto model_attachment_key = "model_attachment";
|
||||
static constexpr auto model_attachments_key = "model_attachments";
|
||||
|
||||
static constexpr auto vehicle_attachments_key = "vehicle_attachments";
|
||||
static constexpr auto is_invincible_key = "is_invincible";
|
||||
static constexpr auto is_visible_key = "is_visible";
|
||||
static constexpr auto has_collision_key = "has_collision";
|
||||
static constexpr auto is_invincible_key = "is_invincible";
|
||||
static constexpr auto is_visible_key = "is_visible";
|
||||
static constexpr auto has_collision_key = "has_collision";
|
||||
|
||||
static constexpr auto vehicle_model_hash_key = "vehicle_model_hash";
|
||||
|
||||
static constexpr auto vehicle_key = "vehicle";
|
||||
|
||||
static constexpr auto tow_key = "tow";
|
||||
static constexpr auto tow_key = "tow";
|
||||
static constexpr auto trailer_key = "trailer";
|
||||
|
||||
static constexpr auto radio_station_key = "radio_station";
|
||||
|
||||
static constexpr auto plate_text_key = "plate_text";
|
||||
static constexpr auto plate_text_key = "plate_text";
|
||||
static constexpr auto plate_text_index_key = "plate_text_index";
|
||||
|
||||
static constexpr auto vehicle_extras_key = "vehicle_extras";
|
||||
|
||||
static constexpr auto vehicle_livery_key = "vehicle_livery";
|
||||
|
||||
static constexpr auto wheel_type_key = "wheel_type";
|
||||
static constexpr auto wheel_color_key = "wheel_color";
|
||||
static constexpr auto wheel_type_key = "wheel_type";
|
||||
static constexpr auto wheel_color_key = "wheel_color";
|
||||
static constexpr auto tire_smoke_color_key = "tire_smoke_color";
|
||||
|
||||
static constexpr auto convertable_state_key = "convertable_state";
|
||||
@ -47,18 +47,18 @@ namespace big
|
||||
static constexpr auto vehicle_window_tint_key = "vehicle_window_tint";
|
||||
|
||||
static constexpr auto neon_lights_key = "neon_lights";
|
||||
static constexpr auto neon_color_key = "neon_color";
|
||||
static constexpr auto neon_color_key = "neon_color";
|
||||
|
||||
static constexpr auto primary_color_key = "primary_color";
|
||||
static constexpr auto primary_color_key = "primary_color";
|
||||
static constexpr auto custom_primary_color_key = "custom_primary_color";
|
||||
|
||||
static constexpr auto secondary_color_key = "secondary_color";
|
||||
static constexpr auto secondary_color_key = "secondary_color";
|
||||
static constexpr auto custom_secondary_color_key = "custom_secondary_color";
|
||||
|
||||
static constexpr auto pearlescent_color_key = "pearlescent_color";
|
||||
static constexpr auto headlight_color_key = "headlight_color";
|
||||
static constexpr auto interior_color_key = "interior_color";
|
||||
static constexpr auto dash_color_key = "dash_color";
|
||||
static constexpr auto headlight_color_key = "headlight_color";
|
||||
static constexpr auto interior_color_key = "interior_color";
|
||||
static constexpr auto dash_color_key = "dash_color";
|
||||
|
||||
static constexpr auto clan_logo_key = "clan_logo";
|
||||
|
||||
|
Reference in New Issue
Block a user