SND\AstrorEnales_cp ca0d730bbb - Working on Metro Platform and Rendering
- Further implementations in the PsVita RenderSystem
2012-08-12 20:00:19 +00:00

20 lines
364 B
C#

using System;
using System.IO;
using ANX.Framework.NonXNA.PlatformSystem;
namespace ANX.PlatformSystem.Metro
{
public class MetroContentManager : INativeContentManager
{
public string MakeRootDirectoryAbsolute(string relativePath)
{
return relativePath;
}
public Stream OpenStream(string filepath)
{
return null;
}
}
}