diff --git a/Minecraft 2.sln b/Minecraft 2.sln new file mode 100644 index 0000000..530b3c8 --- /dev/null +++ b/Minecraft 2.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31611.283 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vues", "Vues\Vues.csproj", "{6474A056-564C-44CE-910D-5B78BA1D8AAA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Release|Any CPU.Build.0 = Release|Any CPU + {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} + EndGlobalSection +EndGlobal diff --git a/Minecraft 2/App.xaml b/Minecraft 2/App.xaml new file mode 100644 index 0000000..8055a5a --- /dev/null +++ b/Minecraft 2/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Minecraft 2/App.xaml.cs b/Minecraft 2/App.xaml.cs new file mode 100644 index 0000000..3f393d7 --- /dev/null +++ b/Minecraft 2/App.xaml.cs @@ -0,0 +1,11 @@ +namespace Minecraft_2; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/Minecraft 2/AppShell.xaml b/Minecraft 2/AppShell.xaml new file mode 100644 index 0000000..acf50a2 --- /dev/null +++ b/Minecraft 2/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/Minecraft 2/AppShell.xaml.cs b/Minecraft 2/AppShell.xaml.cs new file mode 100644 index 0000000..6481df5 --- /dev/null +++ b/Minecraft 2/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace Minecraft_2; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/Minecraft 2/MainPage.xaml b/Minecraft 2/MainPage.xaml new file mode 100644 index 0000000..ae24fb7 --- /dev/null +++ b/Minecraft 2/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +