add fn comments for doxygen, rename OAMTile to OamTile

This commit is contained in:
scawful
2024-04-13 23:10:34 -05:00
parent 99f6842857
commit 89cc0703f1
15 changed files with 103 additions and 20 deletions

View File

@@ -23,9 +23,10 @@ namespace zelda3 {
static constexpr int kTileOffsets[] = {0, 8, 4096, 4104};
using editor::GfxContext;
class OverworldMap : public GfxContext {
/**
* @brief Represents a single Overworld map screen.
*/
class OverworldMap : public editor::context::GfxContext {
public:
OverworldMap() = default;
OverworldMap(int index, ROM& rom, std::vector<gfx::Tile16>& tiles16);