mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-20 21:39: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
|