mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-02 04:29:43 +00:00
12 lines
233 B
C++
12 lines
233 B
C++
#include "controller.h"
|
|
#include <cmath>
|
|
#include <ctime>
|
|
|
|
Controller::Controller() {
|
|
srand(static_cast<unsigned int>(time(nullptr)));
|
|
}
|
|
|
|
void Controller::setDeviceSize(QPoint deviceSize) {
|
|
Global::deviceSize = deviceSize;
|
|
}
|