qmlfrontend/team.cpp
author unc0rr
Mon, 29 Apr 2019 23:41:25 +0200
changeset 14854 aed75d439027
parent 14291 f1a5b7baa87f
permissions -rw-r--r--
Implement external events approach to input user actions into engine. Doesn't work for some obscure reason ("Error: Unknown method parameter type: LongEventType")

#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);
}