1
0
mirror of https://github.com/EnderIce2/Fennix.git synced 2025-07-09 06:19:16 +00:00
Files
Fennix/include/bitmap.hpp
2022-12-21 02:11:49 +02:00

13 lines
206 B
C++

#pragma once
#include <types.h>
class Bitmap
{
public:
size_t Size;
uint8_t *Buffer;
bool operator[](uint64_t index);
bool Set(uint64_t index, bool value);
bool Get(uint64_t index);
};