SND\AstrorEnales_cp 9cfc4d256d - Started working on AssemblyNameFile to make the Factory work on all systems
- Started PsVita RenderSystem and PlatformSystem (still much todo)
2012-08-11 13:06:29 +00:00

25 lines
454 B
C#

using System;
using ANX.Framework.NonXNA.PlatformSystem;
using System.IO;
namespace ANX.PlatformSystem.PsVita
{
public class PsVitaTitleContainer : INativeTitleContainer
{
#region OpenStream
public Stream OpenStream(string name)
{
throw new NotImplementedException();
}
#endregion
#region GetCleanPath
public string GetCleanPath(string path)
{
// TODO: implement
return path;
}
#endregion
}
}