mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 01:34:40 +00:00
ref #97 Added file for testing groupobj object.
This commit is contained in:
parent
8c844f7c33
commit
5b1efc3412
18
src/CrawlTestLvl/private/groupobjbox.cpp
Normal file
18
src/CrawlTestLvl/private/groupobjbox.cpp
Normal 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() {
|
||||
|
||||
}
|
||||
|
||||
}
|
23
src/CrawlTestLvl/private/groupobjbox.h
Normal file
23
src/CrawlTestLvl/private/groupobjbox.h
Normal 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
|
20
src/CrawlTestLvl/private/groupobjboxitem.cpp
Normal file
20
src/CrawlTestLvl/private/groupobjboxitem.cpp
Normal 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) {
|
||||
|
||||
}
|
||||
|
||||
}
|
26
src/CrawlTestLvl/private/groupobjboxitem.h
Normal file
26
src/CrawlTestLvl/private/groupobjboxitem.h
Normal 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
|
Loading…
x
Reference in New Issue
Block a user