Files

18 lines
256 B
C++
Raw Permalink Normal View History

2022-05-10 09:08:49 -04:00
#pragma once
#include <revolution.h>
namespace MR {
2022-10-13 20:01:50 -04:00
2022-05-10 09:08:49 -04:00
class BitArray {
public:
BitArray(int);
bool isOn(int) const;
void set(int, bool);
2024-08-20 20:19:54 -04:00
u8* mArray; // 0x0
int mArraySize; // 0x4
2022-05-10 09:08:49 -04:00
};
};