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