Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
noop_card_preference_provider.h
Go to the documentation of this file.
1#ifndef COCKATRICE_NOOP_CARD_PREFERENCE_PROVIDER_H
2#define COCKATRICE_NOOP_CARD_PREFERENCE_PROVIDER_H
4
6{
7public:
8 [[nodiscard]] QString getCardPreferenceOverride(const QString &) const override
9 {
10 return {};
11 }
12
13 [[nodiscard]] bool getIncludeRebalancedCards() const override
14 {
15 return true;
16 }
17};
18
19#endif // COCKATRICE_NOOP_CARD_PREFERENCE_PROVIDER_H
Definition interface_card_preference_provider.h:7
Definition noop_card_preference_provider.h:6
bool getIncludeRebalancedCards() const override
Definition noop_card_preference_provider.h:13
QString getCardPreferenceOverride(const QString &) const override
Definition noop_card_preference_provider.h:8