mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-26 19:29:20 +00:00
9796f9d600
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
24 lines
356 B
C++
24 lines
356 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <array>
|
|
|
|
namespace EightBit {
|
|
|
|
class Ram;
|
|
|
|
namespace GameBoy {
|
|
class CharacterDefinition {
|
|
public:
|
|
CharacterDefinition();
|
|
CharacterDefinition(Ram* ram, uint16_t address, int height);
|
|
|
|
std::array<int, 8> get(int row) const;
|
|
|
|
private:
|
|
Ram* m_ram;
|
|
uint16_t m_address;
|
|
int m_height;
|
|
};
|
|
}
|
|
} |