mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
18 lines
243 B
C
18 lines
243 B
C
|
#pragma once
|
||
|
|
||
|
#include "StreamWriter.h"
|
||
|
#include "StreamReader.h"
|
||
|
#include "ConsoleStream.h"
|
||
|
|
||
|
namespace System
|
||
|
{
|
||
|
class __ConsoleInit
|
||
|
{
|
||
|
public:
|
||
|
__ConsoleInit();
|
||
|
|
||
|
// The console streams
|
||
|
IO::StreamReader In;
|
||
|
IO::StreamWriter Out;
|
||
|
};
|
||
|
}
|