Enum defining three game modes for Breakout: Classic, Arcade, and Weekly. Used to represent which mode the game is in.
namespace Breakout;
/// <summary>
/// The three ways to play. Classic is the authentic original brick wall, Arcade shuffles through
/// the custom levels, and Weekly is a shared challenge board that changes each week.
/// </summary>
public enum GameMode
{
Classic,
Arcade,
Weekly
}