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