1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 12:35:07 +00:00
serenity/Userland/Games/Minesweeper/CustomGameWidget.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
430 B
C++

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