mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 15:00:54 +01:00
12 lines
294 B
C++
12 lines
294 B
C++
|
|
#include "ServerLogs.h"
|
||
|
|
|
||
|
|
void ServerLogs::SerializeRaw(TiltedPhoques::Buffer::Writer& aWriter) const noexcept
|
||
|
|
{
|
||
|
|
Serialization::WriteString(aWriter, Logs);
|
||
|
|
}
|
||
|
|
|
||
|
|
void ServerLogs::DeserializeRaw(TiltedPhoques::Buffer::Reader& aReader) noexcept
|
||
|
|
{
|
||
|
|
Logs = Serialization::ReadString(aReader);
|
||
|
|
}
|