ref #97 Added file for testing groupobj object.

This commit is contained in:
IgorekLoschinin 2021-09-11 19:42:51 +03:00
parent 8c844f7c33
commit 5b1efc3412
4 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,18 @@
//#
//# 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 "groupobjbox.h"
#include "groupobjboxitem.h"
namespace TestLvl {
GroupObjBox::GroupObjBox() {
}
}

View File

@ -0,0 +1,23 @@
//#
//# 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.
//#
#ifndef GROUPOBJBOX_H
#define GROUPOBJBOX_H
#include "Crawl/controlpos.h"
#include "Crawl/iworlditem.h"
namespace TestLvl {
class GroupObjBox: public CRAWL::ControlPos {
public:
GroupObjBox();
};
}
#endif // GROUPOBJBOX_H

View File

@ -0,0 +1,20 @@
//#
//# 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 "groupobjboxitem.h"
namespace TestLvl {
GroupObjboxItem::GroupObjboxItem(): CRAWL::ClasterItem("GroupObjboxItem") {
}
void GroupObjboxItem::render(unsigned int tbfMsec) {
}
}

View File

@ -0,0 +1,26 @@
//#
//# 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.
//#
#ifndef GROUPOBJBOXITEM_H
#define GROUPOBJBOXITEM_H
#include "box.h"
#include "Crawl/clasteritem.h"
namespace TestLvl {
class GroupObjboxItem: public CRAWL::ClasterItem {
Q_OBJECT
public:
GroupObjboxItem();
void render(unsigned int tbfMsec);
};
}
#endif // GROUPOBJBOXITEM_H