Пример #1
0
 public GamerServicesComponent(Game game)
     : base(game)
 {
     Guide.Initialise(game);
 }
Пример #2
0
 public static IAsyncResult BeginShowKeyboardInput(PlayerIndex player, string title, string description, string defaultText, AsyncCallback callback, object state)
 {
     return(Guide.BeginShowKeyboardInput(player, title, description, defaultText, callback, state, false));
 }
Пример #3
0
 public static IAsyncResult BeginShowMessageBox(string title, string text, IEnumerable <string> buttons, int focusButton, MessageBoxIcon icon, AsyncCallback callback, object state)
 {
     return(Guide.BeginShowMessageBox(PlayerIndex.One, title, text, buttons, focusButton, icon, callback, state));
 }
Пример #4
0
 public static void Show()
 {
     Guide.ShowSignIn(1, false);
 }
Пример #5
0
 public GamerServicesComponent(Game game) : base(game)
 {
     lng          = new LocalNetworkGamer();
     Guide.Window = game.Window;
     Guide.Initialise(game);
 }