pppi-rpg-game/program/trade_system.h

13 lines
522 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Система торговли - управляет экономикой и торговлей в игре
class TradeSystem {
public:
// Открывает торговое окно с NPC или другим игроком
void initiateTrade(/* с кем торговать */);
// Выполняет обмен предметами и/или валютой
void executeTrade(/* параметры торговли */);
// Закрывает торговое окно
void closeTrade();
};