Clean up game/zones/logic folder.

Took 6 minutes
This commit is contained in:
Lukas Brübach 2026-05-18 06:11:18 +02:00
parent a474182603
commit e6820a1c8d
33 changed files with 40 additions and 40 deletions

View file

@ -0,0 +1,19 @@
#include "stack_zone_logic.h"
#include "../board/card_item.h"
#include "card_zone_algorithms.h"
StackZoneLogic::StackZoneLogic(Player *_player,
const QString &_name,
bool _hasCardAttr,
bool _isShufflable,
bool _contentsKnown,
QObject *parent)
: CardZoneLogic(_player, _name, _hasCardAttr, _isShufflable, _contentsKnown, parent)
{
}
void StackZoneLogic::addCardImpl(CardItem *card, int x, int /*y*/)
{
CardZoneAlgorithms::addCardToList(cards, card, x, true);
}