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

Method ReadSByte

Source/Engine/Networking/NetworkMessage.cs:133–138  ·  view source on GitHub ↗

Reads and returns data of type from the message.

()

Source from the content-addressed store, hash-verified

131 /// Reads and returns data of type <see cref="SByte"/> from the message.
132 /// </summary>
133 public sbyte ReadSByte()
134 {
135 sbyte value = 0;
136 ReadBytes((byte*)&value, sizeof(sbyte));
137 return value;
138 }
139
140 /// <summary>
141 /// Writes data of type <see cref="UInt64"/> into the message.

Callers

nothing calls this directly

Calls 1

ReadBytesFunction · 0.85

Tested by

no test coverage detected