Files
OOP2024f_HW3/src/Food.cpp
2025-07-23 23:06:27 +08:00

16 lines
265 B
C++

//
// Created by User on 2024/10/29.
//
#include "Food.hpp"
Food::Food(Production id) : id(id) {}
Production Food::getId() const {
return id;
}
std::vector<Ingredients> Food::GetIngredient(){
return ingredient;
}
int Food::GetMoney() {
return money;
}