remote::Storage just barely working.

This commit is contained in:
J-D-K
2025-07-04 13:06:47 -04:00
parent e29db89706
commit e27e0c8e51
92 changed files with 2240 additions and 1044 deletions

View File

@@ -7,7 +7,7 @@
#include <memory>
/// @brief This is the state that is spawned when CreateSaveData is selected from the user menu.
class SaveCreateState : public AppState
class SaveCreateState final : public AppState
{
public:
/// @brief Constructs a new SaveCreateState.
@@ -19,13 +19,13 @@ class SaveCreateState : public AppState
~SaveCreateState() {};
/// @brief Runs the update routine.
void update(void) override;
void update() override;
/// @brief Runs the render routine.
void render(void) override;
void render() override;
/// @brief This signals so data and the view can be refreshed on the next update() to avoid threading shenanigans.
void data_and_view_refresh_required(void);
void data_and_view_refresh_required();
private:
/// @brief Pointer to target user.