mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-24 01:22:23 +08:00
Added weapons to gta_data_service. (#365)
This commit is contained in:
19
BigBaseV2/src/services/gta_data/weapon_item.hpp
Normal file
19
BigBaseV2/src/services/gta_data/weapon_item.hpp
Normal file
@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
#include "file_manager/file.hpp"
|
||||
|
||||
namespace big
|
||||
{
|
||||
class weapon_item {
|
||||
public:
|
||||
weapon_item();
|
||||
weapon_item(nlohmann::json& item_json);
|
||||
|
||||
std::string name;
|
||||
bool throwable;
|
||||
std::string weapon_type;
|
||||
|
||||
Hash hash;
|
||||
Hash reward_hash;
|
||||
Hash reward_ammo_hash;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user