Refactor overworld constructors to accept Rom pointers

This commit is contained in:
scawful
2025-04-12 11:27:23 -04:00
parent cb86c7b2ec
commit 42cfb3bcb2
10 changed files with 280 additions and 235 deletions

View File

@@ -78,6 +78,8 @@ class Editor {
virtual absl::Status Clear() { return absl::OkStatus(); }
virtual void CleanupUnusedTextures(uint64_t current_time, uint64_t timeout) { }
EditorType type() const { return type_; }
void set_context(EditorContext* context) { context_ = context; }