mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
22 lines
354 B
C++
22 lines
354 B
C++
#include "stdafx.h"
|
|
#include "TextWriter.h"
|
|
|
|
namespace IO
|
|
{
|
|
void TextWriter::WriteLine()
|
|
{
|
|
Write(&TextWriter::NewLine[0], 0, 2);
|
|
}
|
|
|
|
void TextWriter::WriteLine(const char Value)
|
|
{
|
|
Write(Value);
|
|
WriteLine();
|
|
}
|
|
|
|
void TextWriter::WriteLine(const char* Buffer, uint32_t Index, uint32_t Count)
|
|
{
|
|
Write(Buffer, Index, Count);
|
|
WriteLine();
|
|
}
|
|
} |