First_Commit
This commit is contained in:
16
src/Food.cpp
Normal file
16
src/Food.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user