|
|
|
@ -49,6 +49,8 @@ class SOutPacket
|
|
|
|
|
SOutPacket& operator << (const f64 data); |
|
|
|
|
/// Adds data to the packet.
|
|
|
|
|
SOutPacket& operator << (const core::vector3df& data); |
|
|
|
|
/// Adds a quaternion to the packet
|
|
|
|
|
SOutPacket& operator << (const core::quaternion&); |
|
|
|
|
/// Adds data to the packet.
|
|
|
|
|
SOutPacket& operator << (const c8* string); |
|
|
|
|
/// Adds data to the packet.
|
|
|
|
@ -57,7 +59,6 @@ class SOutPacket
|
|
|
|
|
SOutPacket& operator << (const std::string& string); |
|
|
|
|
/// Adds data to the packet.
|
|
|
|
|
SOutPacket& operator << (const core::stringw& string); |
|
|
|
|
|
|
|
|
|
/// Appends another SOutPacket to the packet.
|
|
|
|
|
SOutPacket& operator << (const SOutPacket& other); |
|
|
|
|
|
|
|
|
@ -114,7 +115,9 @@ class SInPacket
|
|
|
|
|
/// Gets the next item in the packet based on the size of the variable.
|
|
|
|
|
void operator >> (f64& data); |
|
|
|
|
/// Gets the next item in the packet based on the size of the variable.
|
|
|
|
|
void operator >> (core::vector3df& data); |
|
|
|
|
void operator >> (core::vector3df& data); |
|
|
|
|
/// Gets the next item in the packet based on the size of the variable.
|
|
|
|
|
void operator >> (core::quaternion& data); |
|
|
|
|
/// Gets the next item in the packet based on the size of the variable.
|
|
|
|
|
void operator >> (char* string); |
|
|
|
|
/// Gets the next item in the packet based on the size of the variable.
|
|
|
|
|