blob: 1933537960bb30c7fcf36d931b647c5f9aa0df10 (
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:
DeprecatedString const& player_name() const { return m_player_name; }
private:
SettingsDialog(GUI::Window* parent, DeprecatedString player_name);
DeprecatedString m_player_name { "Gunnar" };
};
|