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