mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
16 lines
262 B
C++
16 lines
262 B
C++
#pragma once
|
|
|
|
class QApplication;
|
|
|
|
namespace chatterino {
|
|
|
|
class Args;
|
|
class Paths;
|
|
class Settings;
|
|
class Updates;
|
|
|
|
void runGui(QApplication &a, const Paths &paths, Settings &settings,
|
|
const Args &args, Updates &updates);
|
|
|
|
} // namespace chatterino
|