qmlfrontend/team.h
author nemo
Tue, 19 Nov 2019 08:35:32 -0500
changeset 15513 dfdd0db89760
parent 14296 f1a5b7baa87f
permissions -rw-r--r--
oups. forgot "convert" creates a white background by default

#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