/*! * * @file playMode.h * @author RUBINI Thomas * @date January 2022 * @version 1.0 * @brief game mode options * */ #ifndef GUARD_PLAYMODE_H #define GUARD_PLAYMODE_H /*! * @brief List of all game playmode */ enum class PlayMode { NONE, SINGLE, TWO_LOCAL, EXIT, }; #endif