qmlfrontend/team.cpp
author nemo
Sat, 23 Mar 2024 17:24:20 -0400 (9 months ago)
branch1.0.0
changeset 15992 524b0abb5b4c
parent 14291 f1a5b7baa87f
permissions -rw-r--r--
unc0rr commented this out in trunk. based on what andu reported it probably needs to be removed in the branch too
#include "team.h"

Hedgehog::Hedgehog()
    : name(QObject::tr("unnamed", "default hedgehog name").toUtf8()),
      hat("NoHat"),
      hp(100),
      level(0) {}

Team::Team()
    : name(QObject::tr("unnamed", "default team name").toUtf8()),
      color("12345678"),
      m_hedgehogsNumber(4) {
  m_hedgehogs.resize(8);
}

void Team::resize(int number) { m_hedgehogsNumber = number; }

QVector<Hedgehog> Team::hedgehogs() const {
  return m_hedgehogs.mid(0, m_hedgehogsNumber);
}