14 lines
189 B
C#
14 lines
189 B
C#
|
using System;
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace BugSweeper
|
|||
|
{
|
|||
|
public class App : Application
|
|||
|
{
|
|||
|
public App ()
|
|||
|
{
|
|||
|
MainPage = new BugSweeperPage();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|