mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-17 07:52:16 -07:00
Turn Card, Deck_List, Protocol, RNG, Server, Settings and Utility into libraries and remove cockatrice_common.
Took 6 hours 3 minutes Took 31 seconds
This commit is contained in:
parent
3cff55b0bb
commit
1e4e5a4419
593 changed files with 1913 additions and 1601 deletions
24
libcockatrice_utility/libcockatrice/utility/card_ref.h
Normal file
24
libcockatrice_utility/libcockatrice/utility/card_ref.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef CARD_REF_H
|
||||
#define CARD_REF_H
|
||||
|
||||
#include <QString>
|
||||
|
||||
/**
|
||||
* The information passed over the server that is required to identify the exact card to display.
|
||||
*
|
||||
* @param name The name of the card. Should not be empty, unless to indicate the lack of a card.
|
||||
* @param providerId Determines which printing of the card to use. Can be empty, in which case Cockatrice should default
|
||||
* to using the preferred set.
|
||||
*/
|
||||
struct CardRef
|
||||
{
|
||||
QString name;
|
||||
QString providerId = QString();
|
||||
|
||||
bool operator==(const CardRef &other) const
|
||||
{
|
||||
return name == other.name && providerId == other.providerId;
|
||||
}
|
||||
};
|
||||
|
||||
#endif // CARD_REF_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue