mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 09:05:10 -07:00
26 lines
611 B
C
26 lines
611 B
C
/**
|
|
* @file event_processing_options.h
|
|
* @ingroup GameLogicPlayers
|
|
*/
|
|
//! \todo Document this file.
|
|
|
|
#ifndef COCKATRICE_EVENT_PROCESSING_OPTIONS_H
|
|
#define COCKATRICE_EVENT_PROCESSING_OPTIONS_H
|
|
|
|
#include <QFlags>
|
|
|
|
// Define the base enum
|
|
enum EventProcessingOption
|
|
{
|
|
SKIP_REVEAL_WINDOW = 0x0001,
|
|
SKIP_TAP_ANIMATION = 0x0002,
|
|
SKIP_DAMAGE_ANIMATION = 0x0004
|
|
};
|
|
|
|
// Wrap it in a QFlags typedef
|
|
Q_DECLARE_FLAGS(EventProcessingOptions, EventProcessingOption)
|
|
|
|
// Add operator overloads (|, &, etc.)
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(EventProcessingOptions)
|
|
|
|
#endif // COCKATRICE_EVENT_PROCESSING_OPTIONS_H
|