Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
302 B · 18 lines
C
at master
123456789101112131415161718#pragma once
#include "Reader.h"
class InputStream;
class InputStreamReader : public Reader{private: DataInputStream *stream;
public: InputStreamReader(InputStream *in);
virtual void close(); virtual int read(); virtual int read(wchar_t cbuf[], unsigned int offset, unsigned int length);};