qmlfrontend/team.h
author nemo
Thu, 10 Aug 2023 20:48:54 -0400
changeset 15974 8bb07b0f50ca
parent 14291 f1a5b7baa87f
permissions -rw-r--r--
add some round() so that the scale factor compiles at least with non-integer values

#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