Start mapping out PathFind related classes

This commit is contained in:
2024-11-03 11:50:57 -08:00
parent 6a3e0c0728
commit 60189e1b02
8 changed files with 121 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
#ifndef _CPFBITSET
#define _CPFBITSET
class CPFBitSet {
public:
void Clear();
void Add(int bit);
bool Test(int bit);
void Rmv(int bit);
private:
int mBits[16];
};
#endif // _CPFBITSET