mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-19 09:54:46 +01:00
17 lines
218 B
C#
17 lines
218 B
C#
namespace RenderHeads.Media.AVProVideo
|
|
{
|
|
public enum Platform
|
|
{
|
|
Windows = 0,
|
|
MacOSX = 1,
|
|
iOS = 2,
|
|
tvOS = 3,
|
|
Android = 4,
|
|
WindowsPhone = 5,
|
|
WindowsUWP = 6,
|
|
WebGL = 7,
|
|
Count = 8,
|
|
Unknown = 100
|
|
}
|
|
}
|