AlpacaLibrary/Include/Core/Classes/AttackOption.hpp

29 lines
706 B
C++
Raw Normal View History

2018-02-24 12:59:53 +00:00
#ifndef ATTACKOPTION_HPP_INCLUDED
#define ATTACKOPTION_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
2018-03-18 14:38:29 +00:00
namespace Internal
2018-02-24 12:59:53 +00:00
{
2018-03-18 14:38:29 +00:00
class AttackOption : public Object
{
public:
AttackOption(const void* Obj);
2018-12-27 18:17:09 +00:00
AttackOption() = default;
AttackOption(AttackOption&& Obj) = default;
AttackOption(const AttackOption& Obj) = default;
AttackOption& operator=(AttackOption&& Obj) = default;
AttackOption& operator=(const AttackOption& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetType() const;
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
};
}
2018-02-24 12:59:53 +00:00
#endif // ATTACKOPTION_HPP_INCLUDED