mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:27:46 +00:00
Flood: Use the new GML compiler
This commit is contained in:
parent
8434b3a0c6
commit
adaf4a9ed5
8 changed files with 59 additions and 17 deletions
23
Userland/Games/Flood/SettingsWidget.h
Normal file
23
Userland/Games/Flood/SettingsWidget.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2023, the SerenityOS developers
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Widget.h>
|
||||
|
||||
namespace Flood {
|
||||
|
||||
class SettingsWidget : public GUI::Widget {
|
||||
C_OBJECT_ABSTRACT(SettingsWidget)
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<SettingsWidget>> try_create();
|
||||
virtual ~SettingsWidget() override = default;
|
||||
|
||||
private:
|
||||
SettingsWidget() = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue