qmlfrontend/team.h
author unC0Rr
Sun, 27 Oct 2024 17:00:17 +0100
branchtransitional_engine
changeset 16039 a236360669cc
parent 14291 f1a5b7baa87f
permissions -rw-r--r--
Start on AI implementation in rust

#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