refactor editing

This commit is contained in:
Justin Scofield
2022-08-27 23:28:38 -05:00
parent c012115e68
commit 54fa03175f
6 changed files with 36 additions and 36 deletions

View File

@@ -4,6 +4,7 @@
#include <imgui/imgui.h>
#include <cmath>
#include <unordered_map>
#include "absl/container/flat_hash_map.h"
#include "absl/status/status.h"
@@ -78,8 +79,8 @@ class OverworldEditor {
ImGuiTableFlags_Resizable |
ImGuiTableFlags_SizingStretchSame;
absl::flat_hash_map<int, gfx::Bitmap> graphics_bin_;
absl::flat_hash_map<int, gfx::Bitmap> current_graphics_set_;
std::unordered_map<int, gfx::Bitmap> graphics_bin_;
std::unordered_map<int, gfx::Bitmap> current_graphics_set_;
ROM rom_;
zelda3::Overworld overworld_;