MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / ReadGuid

Function ReadGuid

Source/Engine/Networking/NetworkMessage.h:254–259  ·  view source on GitHub ↗

Reads and returns data of type Guid from the message.

Source from the content-addressed store, hash-verified

252 /// Reads and returns data of type Guid from the message.
253 /// </summary>
254 FORCE_INLINE Guid ReadGuid()
255 {
256 Guid value;
257 ReadBytes((uint8*)&value, sizeof(Guid));
258 return value;
259 }
260
261 /// <summary>
262 /// Writes identifier into the stream that is networked-synced (by a server). If both peers acknowledge a specific id then the data transfer is optimized to 32 bits.

Callers

nothing calls this directly

Calls 1

ReadBytesFunction · 0.85

Tested by

no test coverage detected