mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
16 lines
234 B
C++
16 lines
234 B
C++
#pragma once
|
|
|
|
#include "widgets/BaseWindow.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class WelcomeDialog : public BaseWindow
|
|
{
|
|
public:
|
|
WelcomeDialog();
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|