Table of Contents

Enum ConfigPlatforms

Namespace
Stride.Data
Assembly
Stride.dll

Represents a set of platform configurations.

[Flags]
public enum ConfigPlatforms
Extension Methods

Fields

Android = 4

The Android operating system for mobile devices and tablets.

Linux = 32

The Linux operating system, typically used for servers and desktops.

None = 0
UWP = 16

The Universal Windows Platform (UWP) for applications that run on Windows 10 and later devices, and XBox gaming consoles.

Windows = 2

The Windows operating system for desktop applications.

iOS = 8

The iOS operating system for Apple mobile devices such as iPhone and iPad.

macOS = 64

The macOS operating system for Apple desktop and laptop computers.

Remarks

This enumeration allows specifying one or more platforms by combining values using bitwise operations. For example, you can use Windows | Android to indicate both Windows and Android platforms.

See Also