AlpacaLibrary/Include/Core/Classes/ExchangeOffer.hpp

29 lines
727 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>
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class ExchangeOffer : public Object
{
public:
ExchangeOffer();
ExchangeOffer(const void* Obj);
ExchangeOffer(const ExchangeOffer& E);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetAmountTraded() const;
std::int32_t GetItemID() const;
2018-08-06 04:30:12 +00:00
std::int32_t GetPrice() const;
2018-03-18 14:38:29 +00:00
std::int8_t GetProgress() const;
2018-08-06 04:30:12 +00:00
std::int32_t GetSpent() const;
2018-03-18 14:38:29 +00:00
std::int32_t GetTotalAmount() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // EXCHANGEOFFER_HPP_INCLUDED