Implement Save method in various editor classes with unimplemented error

This commit is contained in:
scawful
2025-03-12 15:16:32 -04:00
parent 806885824a
commit e7720019fd
11 changed files with 15 additions and 5 deletions

View File

@@ -61,6 +61,9 @@ class Editor {
// Initialization of ROM assets.
virtual absl::Status Load() = 0;
// Save the editor state.
virtual absl::Status Save() = 0;
// Update the editor state, ran every frame.
virtual absl::Status Update() = 0;