1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 07:18:13 +00:00

GamesSettings: Move classes into the GamesSettings namespace

This is to allow registering future classes as with GML.
This commit is contained in:
Timothy Flynn 2023-01-12 14:45:11 -05:00 committed by Sam Atkins
parent e241b47fee
commit 208653a93c
3 changed files with 9 additions and 1 deletions

View file

@ -13,6 +13,8 @@
#include <LibGUI/ModelIndex.h>
#include <LibGUI/SettingsWindow.h>
namespace GamesSettings {
class CardSettingsWidget final : public GUI::SettingsWindow::Tab {
C_OBJECT(CardSettingsWidget)
public:
@ -38,3 +40,5 @@ private:
GUI::ModelIndex m_last_selected_card_back;
};
}