4
1
mirror of https://github.com/QuasarApp/Snake.git synced 2025-05-06 06:29:47 +00:00
2021-06-09 18:23:07 +03:00

13 lines
195 B
C++

#include "plate.h"
Plate::Plate()
{
setMash(":/mesh/res/meshes/cube.mesh");
setSize({100,100,0});
setZ(0);
}
void Plate::onIntersects(const IWorldItem *item) {
Q_UNUSED(item)
}