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.RenderSystem.Windows.Metro
|
|
|
|
|
{
|
|
|
|
|
public class SupportedPlatformsImpl : ISupportedPlatforms
|
|
|
|
|
{
|
|
|
|
|
public PlatformName[] Names
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new PlatformName[]
|
|
|
|
|
{
|
2012-10-01 12:17:53 +00:00
|
|
|
|
PlatformName.Windows8ModernUI,
|
2012-08-09 16:33:47 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|