mirror of
https://github.com/Maks1mS/pppi-rpg-game.git
synced 2024-12-23 22:32:59 +03:00
добавлен trade_system
This commit is contained in:
parent
97b4fabdf5
commit
fc34b8eecf
0
program/trade_system.cpp
Normal file
0
program/trade_system.cpp
Normal file
12
program/trade_system.h
Normal file
12
program/trade_system.h
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
// Система торговли - управляет экономикой и торговлей в игре
|
||||||
|
class TradeSystem {
|
||||||
|
public:
|
||||||
|
// Открывает торговое окно с NPC или другим игроком
|
||||||
|
void initiateTrade(/* с кем торговать */);
|
||||||
|
|
||||||
|
// Выполняет обмен предметами и/или валютой
|
||||||
|
void executeTrade(/* параметры торговли */);
|
||||||
|
|
||||||
|
// Закрывает торговое окно
|
||||||
|
void closeTrade();
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user