add zelda3::music namespace, update documentation

This commit is contained in:
scawful
2024-04-14 13:46:23 -05:00
parent 512f349e62
commit e72b08eae4
9 changed files with 93 additions and 17 deletions

View File

@@ -140,6 +140,12 @@ SnesPalette ReadPaletteFromRom(int offset, int num_colors, const uint8_t* rom);
std::array<float, 4> ToFloatArray(const SnesColor& color);
/**
* @brief Represents a group of palettes.
*
* Supports adding palettes and colors, clearing the group, and accessing
* palettes and colors by index.
*/
struct PaletteGroup {
PaletteGroup() = default;