mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:57:47 +00:00
Run: Use new GML compiler
This commit is contained in:
parent
05ea3d6be0
commit
6f554af9c5
4 changed files with 27 additions and 9 deletions
22
Userland/Applications/Run/MainWidget.h
Normal file
22
Userland/Applications/Run/MainWidget.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* Copyright (c) 2023, kleines Filmröllchen <filmroellchen@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Widget.h>
|
||||
|
||||
namespace Run {
|
||||
|
||||
class MainWidget : public GUI::Widget {
|
||||
C_OBJECT(MainWidget)
|
||||
public:
|
||||
MainWidget() = default;
|
||||
static ErrorOr<NonnullRefPtr<MainWidget>> try_create();
|
||||
|
||||
virtual ~MainWidget() override = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue