Added weapons to gta_data_service. (#365)

This commit is contained in:
aa15032261
2022-07-29 19:51:19 +08:00
committed by GitHub
parent 205a3f3a4e
commit 28c28fd244
7 changed files with 296 additions and 241 deletions

View 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;
};
}