AlpacaLibrary/Include/Core/Classes/AttackOption.hpp

21 lines
428 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>
class AttackOption : public Object
{
public:
AttackOption();
AttackOption(const void* Obj);
AttackOption(const AttackOption& A);
static Class GetClass();
std::int32_t GetType() const;
};
#endif // ATTACKOPTION_HPP_INCLUDED