mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
18 lines
256 B
C++
18 lines
256 B
C++
#pragma once
|
|
|
|
#include <revolution.h>
|
|
|
|
namespace MR {
|
|
|
|
class BitArray {
|
|
public:
|
|
BitArray(int);
|
|
|
|
bool isOn(int) const;
|
|
void set(int, bool);
|
|
|
|
|
|
u8* mArray; // 0x0
|
|
int mArraySize; // 0x4
|
|
};
|
|
}; |