vgquotes/Src/VideoGameQuotes.Api/Region.cs

18 lines
328 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,
All = NorthAmerica | Japan | Europe | PAL | Australia
}
}