mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:17:35 +00:00
Escalator: Port Escalator to GML Compiler
This commit is contained in:
parent
7d63b8b95f
commit
9507157f04
6 changed files with 35 additions and 10 deletions
24
Userland/Applications/Escalator/MainWidget.h
Normal file
24
Userland/Applications/Escalator/MainWidget.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* Copyright (c) 2023, the SerenityOS developers
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Widget.h>
|
||||
|
||||
namespace Escalator {
|
||||
|
||||
class MainWidget : public GUI::Widget {
|
||||
C_OBJECT_ABSTRACT(MainWidget)
|
||||
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<MainWidget>> try_create();
|
||||
virtual ~MainWidget() override = default;
|
||||
|
||||
private:
|
||||
MainWidget() = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue