mirror of
https://github.com/Maks1mS/pppi-rpg-game.git
synced 2024-12-23 14:22:59 +03:00
добавлен crafting_system
This commit is contained in:
parent
6b14a20b1b
commit
5bd2ededa1
0
program/crafting_system.cpp
Normal file
0
program/crafting_system.cpp
Normal file
9
program/crafting_system.h
Normal file
9
program/crafting_system.h
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
// Система крафтинга - позволяет создавать новые предметы
|
||||||
|
class CraftingSystem {
|
||||||
|
public:
|
||||||
|
// Добавляет рецепт крафтинга
|
||||||
|
void addCraftingRecipe(/* параметры рецепта */);
|
||||||
|
|
||||||
|
// Крафтит предмет по рецепту
|
||||||
|
void craftItem(int recipeId);
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user