AlpacaLibrary/Include/Core/Classes/ExchangeOffer.hpp

24 lines
570 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef EXCHANGEOFFER_HPP_INCLUDED
#define EXCHANGEOFFER_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
class ExchangeOffer : public Object
{
public:
ExchangeOffer();
ExchangeOffer(const void* Obj);
ExchangeOffer(const ExchangeOffer& E);
static Class GetClass();
std::int32_t GetAmountTraded() const;
std::int32_t GetItemID() const;
std::int8_t GetProgress() const;
std::int32_t GetTotalAmount() const;
};
#endif // EXCHANGEOFFER_HPP_INCLUDED