summaryrefslogtreecommitdiff
path: root/Userland/DevTools/HackStudio/GMLPreviewWidget.h
blob: 77419c502e0b8ca36c57633246a3eb5bf5948d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2021, Conor Byrne <cbyrneee@protonmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/LexicalPath.h>
#include <LibGUI/Widget.h>

namespace HackStudio {

class GMLPreviewWidget final : public GUI::Widget {
    C_OBJECT(GMLPreviewWidget)
public:
    void load_gml(DeprecatedString const&);

private:
    explicit GMLPreviewWidget(DeprecatedString const&);
};

}