the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 18 lines 302 B view raw
1#pragma once 2 3#include "Reader.h" 4 5class InputStream; 6 7class InputStreamReader : public Reader 8{ 9private: 10 DataInputStream *stream; 11 12public: 13 InputStreamReader(InputStream *in); 14 15 virtual void close(); 16 virtual int read(); 17 virtual int read(wchar_t cbuf[], unsigned int offset, unsigned int length); 18};