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.
Files
YimMenu/BigBaseV2/src/services/gta_data/vehicle_item.hpp

18 lines
280 B
C++
Raw Normal View History

2022-07-19 18:19:19 +08:00
#pragma once
#include "file_manager/file.hpp"
namespace big
{
class vehicle_item {
public:
vehicle_item();
vehicle_item(nlohmann::json& item_json);
std::string name;
std::string display_name;
std::string display_manufacturer;
std::string clazz;
Hash hash;
};
}