2011-02-12 23:53:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace VideoGameQuotes.Api {
|
2011-02-09 00:05:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The region for which a game is associated
|
|
|
|
|
/// </summary>
|
2011-02-12 23:53:43 +00:00
|
|
|
|
[Flags]
|
2011-02-09 00:05:32 +00:00
|
|
|
|
public enum Region {
|
|
|
|
|
Unknown = 0,
|
2011-02-12 23:53:43 +00:00
|
|
|
|
NorthAmerica = 1,
|
2011-02-09 00:05:32 +00:00
|
|
|
|
Japan = 2,
|
2011-02-12 23:53:43 +00:00
|
|
|
|
Europe = 4,
|
|
|
|
|
PAL = 8,
|
2011-02-13 09:55:01 +00:00
|
|
|
|
Australia = 16
|
2011-02-09 00:05:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|