Implement/match WriteDefaultTexture (#1213)

This commit is contained in:
Christian Semmler
2024-12-12 11:02:14 -07:00
committed by GitHub
parent aceba71fbb
commit 894034f9cf
4 changed files with 79 additions and 12 deletions

View File

@@ -36,6 +36,7 @@ public:
LegoU32 GetHeight() { return m_height; }
void SetHeight(LegoU32 p_height) { m_height = p_height; }
LegoU32 GetCount() { return m_count; }
void SetCount(LegoU32 p_count) { m_count = p_count; }
LegoPaletteEntry* GetPalette() { return m_palette; }
LegoPaletteEntry& GetPaletteEntry(LegoU32 p_i) { return m_palette[p_i]; }
void SetPaletteEntry(LegoU32 p_i, LegoPaletteEntry& p_paletteEntry) { m_palette[p_i] = p_paletteEntry; }