Took 4 minutes

Took 3 minutes

Took 4 minutes

Took 1 minute

Took 3 minutes
This commit is contained in:
Lukas Brübach 2026-05-27 02:15:10 +02:00
parent 558bc2741c
commit 455592216d
6 changed files with 6 additions and 5 deletions

View file

@ -1,6 +1,6 @@
#include "arrow_registry.h" #include "arrow_registry.h"
#include "board/arrow_item.h" #include "../game_graphics/board/arrow_item.h"
void ArrowRegistry::insert(QSharedPointer<ArrowData> data, ArrowItem *arrow) void ArrowRegistry::insert(QSharedPointer<ArrowData> data, ArrowItem *arrow)
{ {

View file

@ -1,6 +1,5 @@
#include "player_actions.h" #include "player_actions.h"
#include "../../game_graphics/board/card_item.h"
#include "../../game_graphics/dialogs/dlg_move_top_cards_until.h" #include "../../game_graphics/dialogs/dlg_move_top_cards_until.h"
#include "../../game_graphics/dialogs/dlg_roll_dice.h" #include "../../game_graphics/dialogs/dlg_roll_dice.h"
#include "../../game_graphics/player/card_menu_action_type.h" #include "../../game_graphics/player/card_menu_action_type.h"

View file

@ -7,6 +7,8 @@
#ifndef COCKATRICE_PLAYER_ACTIONS_H #ifndef COCKATRICE_PLAYER_ACTIONS_H
#define COCKATRICE_PLAYER_ACTIONS_H #define COCKATRICE_PLAYER_ACTIONS_H
#include "../../game_graphics/board/card_item.h"
#include "../../game_graphics/dialogs/dlg_create_token.h" #include "../../game_graphics/dialogs/dlg_create_token.h"
#include "../../game_graphics/dialogs/dlg_move_top_cards_until.h" #include "../../game_graphics/dialogs/dlg_move_top_cards_until.h"
#include "../../game_graphics/player/card_menu_action_type.h" #include "../../game_graphics/player/card_menu_action_type.h"
@ -26,7 +28,6 @@ class Message;
} }
} // namespace google } // namespace google
class CardItem;
class Command_MoveCard; class Command_MoveCard;
class GameEventContext; class GameEventContext;
class PendingCommand; class PendingCommand;

View file

@ -1,7 +1,7 @@
#ifndef ARROWITEM_H #ifndef ARROWITEM_H
#define ARROWITEM_H #define ARROWITEM_H
#include "arrow_data.h" #include "../../game/board/arrow_data.h"
#include "arrow_target.h" #include "arrow_target.h"
#include <QGraphicsItem> #include <QGraphicsItem>

View file

@ -1,7 +1,7 @@
#ifndef GAMESCENE_H #ifndef GAMESCENE_H
#define GAMESCENE_H #define GAMESCENE_H
#include "arrow_registry.h" #include "../game/arrow_registry.h"
#include "../game/board/arrow_data.h" #include "../game/board/arrow_data.h"
#include "../game/zones/card_zone_logic.h" #include "../game/zones/card_zone_logic.h"
#include "board/arrow_item.h" #include "board/arrow_item.h"

View file

@ -1,6 +1,7 @@
#ifndef COCKATRICE_PLAYER_DIALOGS_H #ifndef COCKATRICE_PLAYER_DIALOGS_H
#define COCKATRICE_PLAYER_DIALOGS_H #define COCKATRICE_PLAYER_DIALOGS_H
#include "../../game/player/player_actions.h" #include "../../game/player/player_actions.h"
#include "player_graphics_item.h"
#include <QGraphicsView> #include <QGraphicsView>
#include <QObject> #include <QObject>