QTfrontend/weaponItem.cpp
author unc0rr
Wed, 26 Dec 2007 22:16:22 +0000
changeset 686 494b5880989a
parent 642 3178a83c7043
child 731 237ceeb5d422
permissions -rw-r--r--
- Header cleanup in game.cpp - Page 'in game' to hide frontend interface during the game

#include "weaponItem.h"

WeaponItem::WeaponItem(const QImage& im, QWidget * parent) :
  ItemNum(im, parent, 0)
{
}

WeaponItem::~WeaponItem()
{
}

void WeaponItem::incItems()
{
  ++numItems;
}

void WeaponItem::decItems()
{
  --numItems;
}