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.
31 lines
578 B
31 lines
578 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using Xamarin.Forms;
|
|
|
|
namespace TheGameExtreme.view
|
|
{
|
|
public partial class HomePage : ContentPage
|
|
{
|
|
public HomePage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void OpenGame(object sender, EventArgs args)
|
|
{
|
|
|
|
}
|
|
|
|
private void OpenMultiPlayerMode(object sender, EventArgs args)
|
|
{
|
|
//MultiPlayerMode.Open();
|
|
}
|
|
|
|
private void OpenSetting(object sender, EventArgs args)
|
|
{
|
|
//Setting.Open();
|
|
}
|
|
}
|
|
}
|