You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
314 B
C++
18 lines
314 B
C++
9 years ago
|
#ifndef OPENMW_MECHANICS_TRADING_H
|
||
|
#define OPENMW_MECHANICS_TRADING_H
|
||
|
|
||
|
#include "../mwworld/ptr.hpp"
|
||
|
|
||
|
namespace MWMechanics
|
||
|
{
|
||
|
class Trading
|
||
|
{
|
||
|
public:
|
||
|
Trading();
|
||
|
|
||
|
bool haggle(const MWWorld::Ptr& player, const MWWorld::Ptr& merchant, int playerOffer, int merchantOffer);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|