AlpacaLibrary/Include/Core/Classes/ExchangeOffer.hpp

27 lines
641 B
C++

#ifndef EXCHANGEOFFER_HPP_INCLUDED
#define EXCHANGEOFFER_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
namespace Internal
{
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