mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-16 10:57:02 +00:00
CVarManager: Bring back de/serialization
This commit is contained in:
14
Runtime/Streams/CTextOutStream.hpp
Normal file
14
Runtime/Streams/CTextOutStream.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#include "Runtime/Streams/COutputStream.hpp"
|
||||
|
||||
namespace metaforce {
|
||||
class CTextOutStream {
|
||||
COutputStream* m_out;
|
||||
public:
|
||||
CTextOutStream(COutputStream& out);
|
||||
|
||||
void WriteString(const std::string& str);
|
||||
void WriteString(const char* str, u32 len);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user