Change AppState to BaseState. Update headers.

This commit is contained in:
J-D-K
2025-07-18 06:22:55 -04:00
parent f7163f8dd7
commit 6af4bed9fa
46 changed files with 519 additions and 367 deletions

View File

@@ -1,10 +1,10 @@
#pragma once
#include "appstates/AppState.hpp"
#include "appstates/BaseState.hpp"
#include "sdl.hpp"
#include "ui/Menu.hpp"
/// @brief Extras menu.
class ExtrasMenuState final : public AppState
class ExtrasMenuState final : public BaseState
{
public:
/// @brief Constructor.
@@ -24,5 +24,5 @@ class ExtrasMenuState final : public AppState
ui::Menu m_extrasMenu;
/// @brief Render target for menu.
sdl::SharedTexture m_renderTarget;
sdl::SharedTexture m_renderTarget{};
};