4
1
mirror of https://github.com/QuasarApp/Snake.git synced 2025-05-08 15:39:45 +00:00

ref Added setting group obj.

This commit is contained in:
IgorekLoschinin 2021-09-13 22:00:21 +03:00
parent 5b1efc3412
commit c084a87dda
3 changed files with 5 additions and 3 deletions

@ -5,7 +5,6 @@
//# of this license document, but changing it is not allowed.
//#
#include "groupobjbox.h"
#include "groupobjboxitem.h"
@ -13,6 +12,9 @@ namespace TestLvl {
GroupObjBox::GroupObjBox() {
setDistance(2);
changeLayout(CRAWL::Refresh::CIRCLE);
}
}

@ -9,7 +9,7 @@
namespace TestLvl {
GroupObjboxItem::GroupObjboxItem(): CRAWL::ClasterItem("GroupObjboxItem") {
GroupObjboxItem::GroupObjboxItem(): CRAWL::ClasterItem("GroupObjboxItem"), Box {
}

@ -13,7 +13,7 @@
namespace TestLvl {
class GroupObjboxItem: public CRAWL::ClasterItem {
class GroupObjboxItem: public CRAWL::ClasterItem, public Box {
Q_OBJECT
public:
GroupObjboxItem();