You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
645 B
29 lines
645 B
using MvvmCross;
|
|
using Plugin.BLE;
|
|
using Plugin.BLE.Abstractions.Contracts;
|
|
using System;
|
|
using System.Collections.ObjectModel;
|
|
using Xamarin.Forms;
|
|
using SocketIO.Client;
|
|
using System.Net.Sockets;
|
|
using System.Net.WebSockets;
|
|
|
|
namespace TheGameExtreme.view
|
|
{
|
|
public partial class MultiPlayerMode : ContentPage
|
|
{
|
|
|
|
public MultiPlayerMode()
|
|
{
|
|
InitializeComponent();
|
|
NavigationPage.SetHasNavigationBar(this, false);
|
|
|
|
}
|
|
|
|
private void Button_Clicked(object sender, EventArgs e)
|
|
{
|
|
ClientWebSocket csocket = new ClientWebSocket();
|
|
}
|
|
}
|
|
}
|