AlpacaLibary  1.63
A closed source C++ bot for OSRS
AttackOption.hpp
Go to the documentation of this file.
1 #ifndef ATTACKOPTION_HPP_INCLUDED
2 #define ATTACKOPTION_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include <cstdint>
7 
8 namespace Internal
9 {
10  class AttackOption : public Object
11  {
12  public:
13  AttackOption(const void* Obj);
14 
15  AttackOption() = default;
17  AttackOption(const AttackOption& Obj) = default;
19  AttackOption& operator=(const AttackOption& Obj) = default;
20 
21  static Class GetClass();
22 
23  std::int32_t GetType() const;
24 
25  };
26 }
27 
28 #endif // ATTACKOPTION_HPP_INCLUDED
AttackOption & operator=(AttackOption &&Obj)=default
AttackOption(const AttackOption &Obj)=default
AttackOption & operator=(const AttackOption &Obj)=default
std::int32_t GetType() const
AttackOption(const void *Obj)
static Class GetClass()
AttackOption(AttackOption &&Obj)=default