mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-11 00:49:45 +00:00
21 lines
307 B
C
21 lines
307 B
C
|
#ifndef CLIENTAPP_H
|
||
|
#define CLIENTAPP_H
|
||
|
|
||
|
#include "controller.h"
|
||
|
#include "diff.h"
|
||
|
#include "client_global.h"
|
||
|
|
||
|
class QQmlApplicationEngine;
|
||
|
|
||
|
class CLIENTSHARED_EXPORT ClientApp
|
||
|
{
|
||
|
private:
|
||
|
Controller contr;
|
||
|
|
||
|
public:
|
||
|
ClientApp();
|
||
|
bool run(QQmlApplicationEngine* engine);
|
||
|
};
|
||
|
|
||
|
#endif // CLIENTAPP_H
|