Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
PlatformType.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 namespace SiliconStudio.Core
4 {
5  /// <summary>
6  /// Describes the platform operating system.
7  /// </summary>
8  [DataContract("PlatformType")]
9  public enum PlatformType
10  {
11  /// <summary>
12  /// This is shared across platforms
13  /// </summary>
14  Shared,
15 
16  /// <summary>
17  /// The windows desktop OS.
18  /// </summary>
19  Windows,
20 
21  /// <summary>
22  /// The Windows Phone OS.
23  /// </summary>
25 
26  /// <summary>
27  /// The Windows Store OS.
28  /// </summary>
30 
31  /// <summary>
32  /// The android OS.
33  /// </summary>
34  Android,
35 
36  /// <summary>
37  /// The iOS.
38  /// </summary>
39  iOS,
40  }
41 }
PlatformType
Describes the platform operating system.
Definition: PlatformType.cs:9
The windows desktop OS.
This is shared across platforms
The Windows Phone OS.
The Windows Store OS.