14 lines
333 B
C#
Raw Permalink Normal View History

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