1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:27:35 +00:00

Hearts: Port to GML compiler

This commit is contained in:
Sanil 2024-01-09 21:12:00 +05:30 committed by Tim Schumacher
parent 27339fe6e7
commit 343d6b001f
5 changed files with 30 additions and 13 deletions

View file

@ -0,0 +1,23 @@
/*
* Copyright (c) 2024, Sanil Gupta <sanilg566@gmail.com>.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Widget.h>
namespace Hearts {
class MainWidget : public GUI::Widget {
C_OBJECT_ABSTRACT(MainWidget)
public:
static ErrorOr<NonnullRefPtr<MainWidget>> try_create();
virtual ~MainWidget() override = default;
private:
MainWidget() = default;
};
}