mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-07 23:19:43 +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)
|
||
|
}
|