Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
graphics_item_type.h
Go to the documentation of this file.
1
6
7#ifndef COCKATRICE_GRAPHICS_ITEM_TYPE_H
8#define COCKATRICE_GRAPHICS_ITEM_TYPE_H
9
10#include <QGraphicsItem>
11
13{
14 typeCard = QGraphicsItem::UserType + 1,
15 typeCardDrag = QGraphicsItem::UserType + 2,
16 typeZone = QGraphicsItem::UserType + 3,
17 typePlayerTarget = QGraphicsItem::UserType + 4,
18 typeDeckViewCardContainer = QGraphicsItem::UserType + 5,
19 typeOther = QGraphicsItem::UserType + 6
20};
21
22#endif // COCKATRICE_GRAPHICS_ITEM_TYPE_H
GraphicsItemType
Definition graphics_item_type.h:13
@ typeOther
Definition graphics_item_type.h:19
@ typeDeckViewCardContainer
Definition graphics_item_type.h:18
@ typeCard
Definition graphics_item_type.h:14
@ typePlayerTarget
Definition graphics_item_type.h:17
@ typeZone
Definition graphics_item_type.h:16
@ typeCardDrag
Definition graphics_item_type.h:15