JMessage work (#1951)

This commit is contained in:
hatal175
2023-10-01 00:24:19 +03:00
committed by GitHub
parent 9fb99d923c
commit 02e093fc76
10 changed files with 129 additions and 163 deletions
+10
View File
@@ -24,6 +24,8 @@ struct TReference {
return pcResource_->getResource_groupID(groupID);
}
TResourceContainer* getResourceContainer() const { return pcResource_; }
/* 0x4 */ TResourceContainer* pcResource_;
};
@@ -192,6 +194,14 @@ struct TProcessor {
return pResourceCache_ != NULL && groupID == pResourceCache_->getGroupID();
}
TResourceContainer* getResourceContainer() const {
if (pReference_ == NULL) {
return NULL;
}
return pReference_->getResourceContainer();
}
/* 0x04 */ const TReference* pReference_;
/* 0x08 */ const TResource* pResourceCache_;
/* 0x0C */ const char* pszCurrent_;