qmlfrontend/team.h
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Nov 2018 20:58:00 +0100
changeset 14195 43ca01d4fb46
parent 14143 745c73e0e644
child 14291 f1a5b7baa87f
permissions -rw-r--r--
Remove unused/out-commented "Structure" strings in engine locale files

#ifndef TEAM_H
#define TEAM_H

#include <QObject>
#include <QVector>

struct Hedgehog {
    Hedgehog();

    QByteArray name;
    QByteArray hat;
    quint32 hp;
    int level;
};

class Team {
public:
    explicit Team();

    void resize(int number);
    QVector<Hedgehog> hedgehogs() const;

    QByteArray name;
    QByteArray color;

private:
    QVector<Hedgehog> m_hedgehogs;
    int m_hedgehogsNumber;
};

#endif // TEAM_H