mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 01:34:40 +00:00
23 lines
308 B
C++
23 lines
308 B
C++
#ifndef CLIENTAPP_H
|
|
#define CLIENTAPP_H
|
|
|
|
#include "controller.h"
|
|
#include "diff.h"
|
|
|
|
class QQmlApplicationEngine;
|
|
|
|
class ClientApp
|
|
{
|
|
private:
|
|
Controller contr;
|
|
|
|
QByteArray initTheme();
|
|
|
|
public:
|
|
ClientApp();
|
|
~ClientApp();
|
|
bool init(QQmlApplicationEngine* engine);
|
|
};
|
|
|
|
#endif // CLIENTAPP_H
|