19#include <entt/entt.hpp>
34bool BuyGood(components::AuctionHouse& auction_house, Node& agent, Node& good,
double price,
double quantity);
45bool SellGood(components::AuctionHouse& auction_house, Node& agent, Node&,
double price,
double quantity);
Definition: cityactions.cpp:23
bool BuyGood(AuctionHouse &auction_house, Node &agent, Node &good, double price, double quantity)
Buys a good from the market
Definition: auctionhandler.cpp:24
bool SellGood(AuctionHouse &auction_house, Node &agent, Node &good, double price, double quantity)
Sells a good to the market
Definition: auctionhandler.cpp:67