mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
24 lines
412 B
C
24 lines
412 B
C
|
/*
|
||
|
* Copyright (c) 2023, Tim Ledbetter <timledbetter@gmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibGUI/Widget.h>
|
||
|
|
||
|
namespace GameOfLife {
|
||
|
|
||
|
class MainWidget : public GUI::Widget {
|
||
|
C_OBJECT_ABSTRACT(MainWidget)
|
||
|
public:
|
||
|
static ErrorOr<NonnullRefPtr<MainWidget>> try_create();
|
||
|
virtual ~MainWidget() override = default;
|
||
|
|
||
|
private:
|
||
|
MainWidget() = default;
|
||
|
};
|
||
|
|
||
|
}
|