In my plugin i made my own variable wich stores certain flags:
for example
isAlive (int) and i do bitwise OR shifted bits (id) to set isAlive, id
the compiler gives me a tag mismatch warning every time i use if(!getBit( isAlive, id ))
so my question is shud i use an integer or bool:isAlive[33] to avoid the tag mismatch warnings.
So my question is shud i use an integer or an array of booleans?