4
1
mirror of https://github.com/QuasarApp/Snake.git synced 2025-05-07 15:09:46 +00:00
2021-08-13 17:35:42 +03:00

40 lines
796 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.
//#
#ifndef TESTSNAKE_H
#define TESTSNAKE_H
#include "Crawl/snake.h"
namespace TestLvl {
class TestSnake : public CRAWL::Snake {
Q_OBJECT
public:
TestSnake();
// AutoGenerateClaster interface
public:
unsigned int itemsCount() const override;
// IItem interface
public:
QString itemTextId() const override;
QString itemName() const override;
QString description() const override;
QString image() const override;
int cost() const override;
int requiredTier() const override;
};
}
#endif // TESTSNAKE_H