qmlfrontend/team.h
author nemo
Fri, 23 Nov 2018 16:38:47 -0500 (2018-11-23)
changeset 14285 a7810074c20d
parent 14143 745c73e0e644
child 14291 f1a5b7baa87f
permissions -rw-r--r--
these need casting too, but overall switching type is a win.
#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