Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
event_processing_options.h
Go to the documentation of this file.
1
6
7#ifndef COCKATRICE_EVENT_PROCESSING_OPTIONS_H
8#define COCKATRICE_EVENT_PROCESSING_OPTIONS_H
9
10#include <QFlags>
11
12// Define the base enum
18
19// Wrap it in a QFlags typedef
20Q_DECLARE_FLAGS(EventProcessingOptions, EventProcessingOption)
21
22// Add operator overloads (|, &, etc.)
23Q_DECLARE_OPERATORS_FOR_FLAGS(EventProcessingOptions)
24
25#endif // COCKATRICE_EVENT_PROCESSING_OPTIONS_H
EventProcessingOption
Definition event_processing_options.h:14
@ SKIP_TAP_ANIMATION
Definition event_processing_options.h:16
@ SKIP_REVEAL_WINDOW
Definition event_processing_options.h:15