First_Commit

This commit is contained in:
2025-07-23 23:06:27 +08:00
commit d35d096374
27 changed files with 2528 additions and 0 deletions

16
src/Food.cpp Normal file
View File

@@ -0,0 +1,16 @@
//
// 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;
}