1
Fork 0
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:
kleines Filmröllchen 2023-05-26 12:42:58 +02:00 committed by Sam Atkins
parent 05ea3d6be0
commit 6f554af9c5
4 changed files with 27 additions and 9 deletions

View 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;
};
}