14 lines
317 B
C#
Raw Permalink Normal View History

using System.Diagnostics;
2024-12-21 18:50:35 +01:00
namespace Microsoft.Xna.Framework.GamerServices
{
public static class Guide
{
2024-12-21 20:27:43 +01:00
public static void Show(PlayerIndex playerIndex)
2024-12-21 18:50:35 +01:00
{
Debug.Write("The Market Place should now be shown.");
}
public static bool IsTrialMode { get; set; }
}
}