mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-30 03:34:45 +00:00
17 lines
216 B
C
17 lines
216 B
C
|
#ifndef CONTROLLER_H
|
||
|
#define CONTROLLER_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include "snake.h"
|
||
|
|
||
|
class Controller : public QObject
|
||
|
{
|
||
|
private:
|
||
|
Snake snake;
|
||
|
public:
|
||
|
Controller();
|
||
|
void update();
|
||
|
};
|
||
|
|
||
|
#endif // CONTROLLER_H
|