AlpacaLibrary/Include/Game/Interfaces/Trade.hpp

25 lines
601 B
C++
Raw Normal View History

2018-04-18 05:50:40 +00:00
#ifndef TRADE_HPP_INCLUDED
#define TRADE_HPP_INCLUDED
#include <cstdint>
#include <vector>
#include <string>
class Trade
{
public:
static bool IsOpen();
static std::vector<std::int32_t> GetYourOfferItemIDs();
static std::vector<std::string> GetYourOfferItemNames();
static std::vector<std::int32_t> GetYourOfferItemAmounts();
static std::vector<std::int32_t> GetTheirOfferItemIDs();
static std::vector<std::string> GetTheirOfferItemNames();
static std::vector<std::int32_t> GetTheirOfferItemAmounts();
};
#endif // TRADE_HPP_INCLUDED