mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 17:54:42 +00:00
29 lines
629 B
C++
29 lines
629 B
C++
//#
|
|
//# Copyright (C) 2021-2021 QuasarApp.
|
|
//# Distributed under the GPLv3 software license, see the accompanying
|
|
//# Everyone is permitted to copy and distribute verbatim copies
|
|
//# of this license document, but changing it is not allowed.
|
|
//#
|
|
|
|
|
|
#include "egg.h"
|
|
namespace JungleLvl {
|
|
|
|
Egg::Egg(const QString name): CRAWL::IWorldItem(name)
|
|
{
|
|
QStringList mashes {
|
|
"qrc:/mesh/meshes/Other/Egg.mesh",
|
|
};
|
|
|
|
setMash(mashes[rand() % mashes.size()]);
|
|
|
|
setSize({1,1,1});
|
|
setRotation(QQuaternion::fromEulerAngles({0,0, static_cast<float>(rand() % 360)}));
|
|
}
|
|
|
|
void Egg::onIntersects(const IWorldItem *) {
|
|
|
|
}
|
|
|
|
}
|