mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-08 23:49:42 +00:00
10 lines
152 B
C++
10 lines
152 B
C++
#include "box.h"
|
|
|
|
Box::Box(double x, double y):
|
|
ItemWorld (x, y) {
|
|
|
|
this->setSize(10, 10);
|
|
this->setTexture("qrc:/texture/box-texture");
|
|
}
|
|
|