vgquotes/Src/VideoGameQuotes.Api/Region.cs

16 lines
268 B
C#

using System;
namespace VideoGameQuotes.Api {
/// <summary>
/// The region for which a game is associated
/// </summary>
[Flags]
public enum Region {
Unknown = 0,
NorthAmerica = 1,
Japan = 2,
Europe = 4,
PAL = 8,
Australia = 16
}
}