Jsupport stream and JKRAramArchive (#143)

* JSupport streams

* JKRAramArchive
This commit is contained in:
lepelog
2021-08-28 16:32:14 +02:00
committed by GitHub
parent daf45f768d
commit f25c24699b
38 changed files with 511 additions and 1270 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ class JSUIosBase {
public:
JSUIosBase() { mState = false; }
virtual ~JSUIosBase();
virtual ~JSUIosBase() {}
bool isGood() const { return mState == 0; }
void clrState(EIoState state) { mState &= ~state; }
@@ -19,6 +19,6 @@ public:
private:
u8 mState;
};
}; // Size = 0x8
#endif