2012-08-09 16:33:47 +00:00
|
|
|
|
using System;
|
|
|
|
|
using ANX.Framework.NonXNA;
|
|
|
|
|
|
|
|
|
|
// This file is part of the ANX.Framework created by the
|
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
|
|
|
|
|
|
|
|
|
namespace ANX.InputSystem.Standard
|
|
|
|
|
{
|
|
|
|
|
public class SupportedPlatformsImpl : ISupportedPlatforms
|
|
|
|
|
{
|
|
|
|
|
public PlatformName[] Names
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new PlatformName[]
|
|
|
|
|
{
|
2012-08-22 09:51:35 +00:00
|
|
|
|
PlatformName.Android,
|
|
|
|
|
PlatformName.IOS,
|
|
|
|
|
PlatformName.PSVita,
|
2012-08-09 16:33:47 +00:00
|
|
|
|
PlatformName.Linux,
|
|
|
|
|
PlatformName.MacOSX,
|
|
|
|
|
PlatformName.WindowsXP,
|
|
|
|
|
PlatformName.WindowsVista,
|
|
|
|
|
PlatformName.Windows7,
|
2012-10-04 07:45:25 +00:00
|
|
|
|
PlatformName.Windows8,
|
|
|
|
|
PlatformName.Windows8ModernUI
|
2012-08-09 16:33:47 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|