diff --git a/Source/Engine/Networking/NetworkMessage.h b/Source/Engine/Networking/NetworkMessage.h index 5b2b1e7ba..b9d39fb3f 100644 --- a/Source/Engine/Networking/NetworkMessage.h +++ b/Source/Engine/Networking/NetworkMessage.h @@ -98,7 +98,7 @@ public: public: /// - /// Writes data of type into the message. + /// Writes data of type Vector2 into the message. /// FORCE_INLINE void WriteVector2(const Vector2& value) { @@ -107,7 +107,7 @@ public: } /// - /// Reads and returns data of type from the message. + /// Reads and returns data of type Vector2 from the message. /// FORCE_INLINE Vector2 ReadVector2() { @@ -115,7 +115,7 @@ public: } /// - /// Writes data of type into the message. + /// Writes data of type Vector3 into the message. /// FORCE_INLINE void WriteVector3(const Vector3& value) { @@ -125,7 +125,7 @@ public: } /// - /// Reads and returns data of type from the message. + /// Reads and returns data of type Vector3 from the message. /// FORCE_INLINE Vector3 ReadVector3() { @@ -133,7 +133,7 @@ public: } /// - /// Writes data of type into the message. + /// Writes data of type Vector4 into the message. /// FORCE_INLINE void WriteVector4(const Vector4& value) { @@ -144,7 +144,7 @@ public: } /// - /// Reads and returns data of type from the message. + /// Reads and returns data of type Vector4 from the message. /// FORCE_INLINE Vector4 ReadVector4() { @@ -152,7 +152,7 @@ public: } /// - /// Writes data of type into the message. + /// Writes data of type Quaternion into the message. /// FORCE_INLINE void WriteQuaternion(const Quaternion& value) { @@ -163,7 +163,7 @@ public: } /// - /// Reads and returns data of type from the message. + /// Reads and returns data of type Quaternion from the message. /// FORCE_INLINE Quaternion ReadQuaternion() {