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

14 lines
256 B
C++

#pragma once
#include <vector>
#include "ItemConfig.hpp"
struct RecipeConfig
{
std::vector<ItemAmount32> Ingredients{};
std::vector<ItemAmount32> Results{};
float ProcessingTime{};
uint32_t ID{ std::numeric_limits<uint32_t>::max() };
};