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.
415 B · 17 lines
C
at master
1234567891011121314151617#pragma onceusing namespace std;// 4J Stu - Represents Java standard lib abstract
class InputStream{public: virtual ~InputStream() {}
virtual int read() = 0; virtual int read(byteArray b) = 0; virtual int read(byteArray b, unsigned int offset, unsigned int length) = 0; virtual void close() = 0; virtual __int64 skip(__int64 n) = 0;
static InputStream *getResourceAsStream(const wstring &fileName);};