mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-10 08:29:44 +00:00
24 lines
530 B
C++
24 lines
530 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 "ground.h"
|
|
#include "groundplate.h"
|
|
namespace JungleLvl {
|
|
|
|
Ground::Ground() : CRAWL::GroundClaster("JungelGroud") {
|
|
registerItemType<GroundPlate>();
|
|
}
|
|
|
|
unsigned int Ground::itemsCount() const {
|
|
return 3;
|
|
}
|
|
|
|
int Ground::newObjectDistance() const {
|
|
return 150;
|
|
}
|
|
}
|