AlpacaLibrary/Include/Game/Interfaces/Trade.hpp

25 lines
595 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();
2018-07-20 09:50:38 +00:00
static std::vector<std::int32_t> GetMyOfferItemIDs();
static std::vector<std::string> GetMyOfferItemNames();
static std::vector<std::int32_t> GetMyOfferItemAmounts();
2018-04-18 05:50:40 +00:00
static std::vector<std::int32_t> GetTheirOfferItemIDs();
static std::vector<std::string> GetTheirOfferItemNames();
static std::vector<std::int32_t> GetTheirOfferItemAmounts();
};
#endif // TRADE_HPP_INCLUDED