GameServer
PacketPlayerList.h
[詳解]
1 
7 #ifndef __PACKETPLAYERLIST_H__
8 #define __PACKETPLAYERLIST_H__
9 
10 #include "PacketBase.h"
12 #include "PlayerData.h"
13 #include "FlexArray.h"
14 #include "PacketID.h"
15 
16 
21 {
22 
23 public:
24 
30  virtual u8 GetPacketID() const { return PacketID::PlayerList; }
31 
32 
33 
36 
37 
42  {
43  }
44 
49  {
50  List = InList;
51 
52  }
53 
54 
62  {
63  List.Serialize(pStream);
64 
65  return true;
66  }
67 };
68 
69 #endif // #ifndef __PACKETPLAYERLIST_H__
unsigned char u8
Definition: TypeDefs.h:6
PacketPlayerList()
コンストラクタ
Definition: PacketPlayerList.h:41
void Serialize(MemoryStreamInterface *pStream)
Definition: FlexArray.h:143
プレイヤーデータパケット
virtual u8 GetPacketID() const
パケットID取得.
Definition: PacketPlayerList.h:30
bool Serialize(MemoryStreamInterface *pStream)
シリアライズ
Definition: PacketPlayerList.h:61
プレイヤーリストパケット
Definition: PacketPlayerList.h:20
Definition: PacketBase.h:9
Definition: MemoryStreamInterface.h:8
FlexArray< PlayerData > List
プレイヤーリスト
Definition: PacketPlayerList.h:35
PacketPlayerList(FlexArray< PlayerData > InList)
コンストラクタ
Definition: PacketPlayerList.h:48
プレイヤーリストパケット
Definition: PacketID.h:153