mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:37:45 +00:00
Spider: Port to the GML compiler
This commit is contained in:
parent
b7bcdf7c53
commit
65b9cb63ee
4 changed files with 29 additions and 9 deletions
23
Userland/Games/Spider/MainWidget.h
Normal file
23
Userland/Games/Spider/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 Spider {
|
||||
|
||||
class MainWidget : public GUI::Widget {
|
||||
C_OBJECT_ABSTRACT(MainWidget)
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<Spider::MainWidget>> try_create();
|
||||
virtual ~MainWidget() override = default;
|
||||
|
||||
private:
|
||||
MainWidget() = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue