flagmanager progress

This commit is contained in:
lepelog
2023-10-13 21:18:02 +02:00
parent fa36edcffd
commit a194d553af
3 changed files with 128 additions and 21 deletions
+3
View File
@@ -5,6 +5,9 @@
class BitwiseFlagHelper {
public:
bool checkFlag(u16 slot, u16 shift, const u16 *pData, u16 flagCount);
bool checkFlag2(u16 slot, u16 shift, const u16 *pData, s32 flagCount) {
return checkFlag(slot, shift, pData, flagCount);
}
void setFlag(u16 slot, u16 shift, u16 *pData, u16 flagCount);
void unsetFlag(u16 slot, u16 shift, u16 *pData, u16 flagCount);
};