From 5f1f2d292a7dbcc47fe8e5e2e1b44c697f47e274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Wed, 10 Sep 2025 09:21:21 +0200 Subject: [PATCH] Comment spacing. Took 43 seconds --- .../src/game/zones/logic/table_zone_logic.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/cockatrice/src/game/zones/logic/table_zone_logic.h b/cockatrice/src/game/zones/logic/table_zone_logic.h index 9c28ff3ef..a3ce3480b 100644 --- a/cockatrice/src/game/zones/logic/table_zone_logic.h +++ b/cockatrice/src/game/zones/logic/table_zone_logic.h @@ -19,14 +19,15 @@ public: protected: void addCardImpl(CardItem *card, int x, int y) override; - /** - Removes a card from view. - @param position card position - @param cardId id of card to take - @param toNewZone Whether the destination of the card is not the same as the starting zone. Defaults to true - @return CardItem that has been removed - */ + /** + * @brief Removes a card from view. + * + * @param position card position + * @param cardId id of card to take + * @param toNewZone Whether the destination of the card is not the same as the starting zone. Defaults to true + * @return CardItem that has been removed + */ CardItem *takeCard(int position, int cardId, bool toNewZone = true) override; };