Files
factory-hole-core/include/Components/Configs/ItemConfig.hpp
2026-02-09 00:53:38 +09:00

14 lines
169 B
C++

#pragma once
#include <unordered_map>
#include <vector>
#include <string>
#include "Types/Item.hpp"
struct ItemConfig
{
Item ItemID{};
std::string Name{};
};