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

Method ReadInt64

Source/Engine/Networking/NetworkMessage.cs:79–84  ·  view source on GitHub ↗

Reads and returns data of type from the message.

()

Source from the content-addressed store, hash-verified

77 /// Reads and returns data of type <see cref="Int64"/> from the message.
78 /// </summary>
79 public long ReadInt64()
80 {
81 long value = 0;
82 ReadBytes((byte*)&value, sizeof(long));
83 return value;
84 }
85
86 /// <summary>
87 /// Writes data of type <see cref="Int32"/> into the message.

Callers

nothing calls this directly

Calls 1

ReadBytesFunction · 0.85

Tested by

no test coverage detected