mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-06 06:29:47 +00:00
13 lines
195 B
C++
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)
|
|
}
|