vgquotes/Src/VideoGameQuotes.Api/Region.cs

12 lines
224 B
C#
Raw Normal View History

2011-02-09 00:05:32 +00:00
namespace VideoGameQuotes.Api {
/// <summary>
/// The region for which a game is associated
/// </summary>
public enum Region {
Unknown = 0,
UnitedStates = 1,
Japan = 2,
Europe = 3,
Other = 4
}
}