1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 12:05:07 +00:00
serenity/Userland/Games/Minesweeper/MainWidget.h
tetektoza 4db9996cc0 Minesweeper: Port to GML compilation
This patch ports minesweeper to GML compilation,
and introduces a few changes made to associated files.
2023-10-24 21:47:18 +02:00

23 lines
413 B
C++

/*
* Copyright (c) 2023, the SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Widget.h>
namespace Minesweeper {
class MainWidget : public GUI::Widget {
C_OBJECT_ABSTRACT(MainWidget)
public:
static ErrorOr<NonnullRefPtr<Minesweeper::MainWidget>> try_create();
virtual ~MainWidget() override = default;
private:
MainWidget() = default;
};
}