Snake/back-end/controller.h

17 lines
216 B
C
Raw Normal View History

2018-09-11 20:10:37 +03:00
#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