mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-13 06:06:07 +00:00
Start mapping out PathFind related classes
This commit is contained in:
15
include/MetroidPrime/PathFinding/CPFBitSet.hpp
Normal file
15
include/MetroidPrime/PathFinding/CPFBitSet.hpp
Normal 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
|
||||
Reference in New Issue
Block a user