housekeeping and inventory

This commit is contained in:
Justin Scofield
2022-09-13 00:24:24 -05:00
parent 56ef315028
commit 67a5f6bf68
5 changed files with 144 additions and 121 deletions

View File

@@ -10,8 +10,8 @@ namespace yaze {
namespace app {
namespace zelda3 {
constexpr int kMenuGfxStart = 0xE000;
constexpr int kLampItemPos = 0x6F6F0;
constexpr int kInventoryStart = 0x6564A;
constexpr int kLampItemPos = 0x6F6F9;
constexpr int kBowItemPos = 0x6F631;
class Inventory {
@@ -23,8 +23,7 @@ class Inventory {
void Create(Bytes& all_gfx);
private:
void BuildTileset(Bytes& all_gfx);
absl::Status BuildTileset(Bytes& all_gfx);
ROM rom_;