SuperSpaceInvaderTurboApoca.../headers/playMode.h
2022-01-09 04:24:25 +01:00

26 lines
297 B
C

/*!
*
* @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