YAPOG  0.0.1
Yet Another Pokemon Online Game
PacketType.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_PACKETTYPE_HPP
2 # define YAPOG_PACKETTYPE_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
9  enum class YAPOG_LIB PacketType : Int16
10  {
11  // reserved
12  None = 0,
13 
14  // from client to server
18 
20 
22 
24 
26 
27  // from server to client
32 
34 
36 
38 
41 
44 
46 
48 
50 
52  };
53 } // namespace yap
54 
55 #endif // YAPOG_PACKETTYPE_HPP