mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-23 09:02:38 +08:00
20 lines
283 B
C++
20 lines
283 B
C++
![]() |
#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;
|
||
|
};
|
||
|
}
|