mirror of
https://github.com/openeggbert/mobile-eggbert-kni-web.git
synced 2025-03-25 15:47:51 +01:00
14 lines
320 B
C#
14 lines
320 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|