qmlfrontend/team.h
author nemo
Mon, 14 Jan 2019 15:11:15 -0500
branch0.9.25
changeset 14594 9c03b3cd6d16
parent 14296 f1a5b7baa87f
permissions -rw-r--r--
just focus on the unsafe deletes in a hopefully branch-safe fashion

#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