blob: 6f0648a5f0f9c652b0bc0f6b8ae1e5f099ec46f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
#include <LibGUI/Dialog.h>
class SettingsDialog : public GUI::Dialog {
C_OBJECT(SettingsDialog)
public:
String const& player_name() const { return m_player_name; }
private:
SettingsDialog(GUI::Window* parent, String player_name);
String m_player_name { "Gunnar" };
};
|