20 lines
468 B
C#
20 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Xna.Framework;
|
|
|
|
namespace WindowsPhoneSpeedyBlupi
|
|
{
|
|
public class MarketPlace
|
|
{
|
|
public static void Show(PlayerIndex playerIndex)
|
|
{
|
|
//Guide.ShowMarketplace(PlayerIndex.One);
|
|
Debug.Write("The Market Place should be shown.");
|
|
}
|
|
}
|
|
}
|