mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:37:46 +00:00
SpaceAnalyzer: Port to GML compiler
This commit is contained in:
parent
986130d9ea
commit
18124a5611
5 changed files with 30 additions and 11 deletions
23
Userland/Applications/SpaceAnalyzer/MainWidget.h
Normal file
23
Userland/Applications/SpaceAnalyzer/MainWidget.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 SpaceAnalyzer {
|
||||
|
||||
class MainWidget final : public GUI::Widget {
|
||||
C_OBJECT(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