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.

16 lines
207 B
C++
Raw Normal View History

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