mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
16 lines
239 B
C++
16 lines
239 B
C++
#include <QApplication>
|
|
#include "mainwindow.h"
|
|
#include "colorscheme.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
//ColorScheme::makeScheme(0, -0.8);
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|