qmlfrontend/team.h
author Jens Petersen
Mon, 12 Sep 2022 12:50:37 -0400
branch1.0.0
changeset 15861 9d4ba1912e71
parent 14291 f1a5b7baa87f
permissions -rw-r--r--
build fix from https://bugzilla.redhat.com/show_bug.cgi?id=1853122

#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