using System;
namespace VoxelBusters.CoreLibrary.NativePlugins
{
///
/// The enum is used to indicate the platform application is running.
///
[Flags]
public enum NativePlatform
{
/// The runtime platform could not be determined.
Unknown = 0,
/// The runtime platform is iOS.
iOS = 1 << 0,
/// The runtime platform is tvOS.
tvOS = 1 << 1,
/// The runtime platform is Android.
Android = 1 << 2,
All = iOS | tvOS | Android,
}
}