Reads and returns data of type Guid from the message.
| 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. |
nothing calls this directly
no test coverage detected