diff --git a/LOLAPP/LOLAPP.sln b/LOLAPP/LOLAPP.sln
new file mode 100644
index 0000000..63c19f9
--- /dev/null
+++ b/LOLAPP/LOLAPP.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("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LOLAPP", "LOLAPP\LOLAPP.csproj", "{736A464D-D35B-47BD-AC29-04E11BFF186F}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {736A464D-D35B-47BD-AC29-04E11BFF186F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {736A464D-D35B-47BD-AC29-04E11BFF186F}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {736A464D-D35B-47BD-AC29-04E11BFF186F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {736A464D-D35B-47BD-AC29-04E11BFF186F}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {736A464D-D35B-47BD-AC29-04E11BFF186F}.Release|Any CPU.Build.0 = Release|Any CPU
+ {736A464D-D35B-47BD-AC29-04E11BFF186F}.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/LOLAPP/LOLAPP/App.xaml b/LOLAPP/LOLAPP/App.xaml
new file mode 100644
index 0000000..55b0871
--- /dev/null
+++ b/LOLAPP/LOLAPP/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/LOLAPP/LOLAPP/App.xaml.cs b/LOLAPP/LOLAPP/App.xaml.cs
new file mode 100644
index 0000000..1776a72
--- /dev/null
+++ b/LOLAPP/LOLAPP/App.xaml.cs
@@ -0,0 +1,17 @@
+using LOLAPP.Modele;
+
+namespace LOLAPP;
+
+public partial class App : Application
+{
+
+ public Manager ChampionManager { get; private set; } = new Manager(new Stub());
+ public App()
+ {
+ ChampionManager.Chargement();
+ ChampionManager.Sauvegarde();
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+}
diff --git a/LOLAPP/LOLAPP/AppShell.xaml b/LOLAPP/LOLAPP/AppShell.xaml
new file mode 100644
index 0000000..0cd8fa1
--- /dev/null
+++ b/LOLAPP/LOLAPP/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/LOLAPP/LOLAPP/AppShell.xaml.cs b/LOLAPP/LOLAPP/AppShell.xaml.cs
new file mode 100644
index 0000000..2697b36
--- /dev/null
+++ b/LOLAPP/LOLAPP/AppShell.xaml.cs
@@ -0,0 +1,9 @@
+namespace LOLAPP;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/LOLAPP/LOLAPP/DataContactPersistance/DataContract.cs b/LOLAPP/LOLAPP/DataContactPersistance/DataContract.cs
new file mode 100644
index 0000000..59cebb6
--- /dev/null
+++ b/LOLAPP/LOLAPP/DataContactPersistance/DataContract.cs
@@ -0,0 +1,47 @@
+using LOLAPP.Modele;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Runtime.Serialization;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace LOLAPP.DataContactPersistance
+{
+ public class DataContract : IPersistanceManager
+ {
+ public string FilePath2 {get; set;} = Path.Combine(Directory.GetCurrentDirectory(),"//Doss1_XML");
+ public string FileName { get; set; } = "Test2.xml";
+ public string FilePath { get; set; } = "C\\Users\\cecharbonn5\\SAE#\\LOLAPP.XML";
+ public (List, List) Chargdon()
+ {
+ var serializer = new DataContractSerializer(typeof(List));
+
+ List list;
+
+ using(Stream s = File.OpenRead(Path.Combine(FilePath, FileName)))
+ {
+ list = serializer.ReadObject(s) as List;
+ }
+ return (new List(), list);
+ }
+
+ public void Sauvdon(List s, List c)
+ {
+ var serializer = new DataContractSerializer(typeof(List));
+ if (!Directory.Exists(FilePath))
+ {
+ Debug.WriteLine("Directory crée à l'instant");
+ Debug.WriteLine(Directory.GetDirectoryRoot);
+ Debug.WriteLine(FilePath);
+ Directory.CreateDirectory(FilePath);
+ }
+
+ using (Stream st = File.Create(Path.Combine(FilePath,FileName)))
+ {
+ serializer.WriteObject(st, c);
+ }
+ }
+ }
+}
diff --git a/LOLAPP/LOLAPP/LOLAPP.csproj b/LOLAPP/LOLAPP/LOLAPP.csproj
new file mode 100644
index 0000000..18a6d92
--- /dev/null
+++ b/LOLAPP/LOLAPP/LOLAPP.csproj
@@ -0,0 +1,55 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ LOLAPP
+ true
+ true
+ enable
+
+
+ LOLAPP
+
+
+ com.companyname.lolapp
+ 8d0f721c-c2d2-4ddd-a136-827e3bde1ffd
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/LOLAPP/LOLAPP/MainPage.xaml b/LOLAPP/LOLAPP/MainPage.xaml
new file mode 100644
index 0000000..7695ff7
--- /dev/null
+++ b/LOLAPP/LOLAPP/MainPage.xaml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/MainPage.xaml.cs b/LOLAPP/LOLAPP/MainPage.xaml.cs
new file mode 100644
index 0000000..a5c06ab
--- /dev/null
+++ b/LOLAPP/LOLAPP/MainPage.xaml.cs
@@ -0,0 +1,26 @@
+using LOLAPP.Modele;
+
+namespace LOLAPP;
+
+public partial class MainPage : ContentPage
+{
+ int count = 0;
+ public Manager Cmanager => (App.Current as App).ChampionManager;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ MAQE.BindingContext = Cmanager;
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ count++;
+ if (count == 1)
+ CounterBtn.Text = $"Clicked {count} time";
+ else
+ CounterBtn.Text = $"Clicked {count} times";
+
+ SemanticScreenReader.Announce(CounterBtn.Text);
+ }
+}
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/MauiProgram.cs b/LOLAPP/LOLAPP/MauiProgram.cs
new file mode 100644
index 0000000..5aed3e9
--- /dev/null
+++ b/LOLAPP/LOLAPP/MauiProgram.cs
@@ -0,0 +1,24 @@
+using Microsoft.Extensions.Logging;
+
+namespace LOLAPP;
+
+public static class MauiProgram
+{
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+}
diff --git a/LOLAPP/LOLAPP/Modele/Ability.cs b/LOLAPP/LOLAPP/Modele/Ability.cs
new file mode 100644
index 0000000..06c1120
--- /dev/null
+++ b/LOLAPP/LOLAPP/Modele/Ability.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace LOLAPP.Modele
+{
+ public class Ability
+ {
+ public string Name { get; set; }
+
+ public Ability(string name)
+ {
+ // Le constructeur de la classe Ability initialise le nom de l'abilitée.
+ Name = name;
+ }
+ }
+}
diff --git a/LOLAPP/LOLAPP/Modele/Champion.cs b/LOLAPP/LOLAPP/Modele/Champion.cs
new file mode 100644
index 0000000..f2f4ffe
--- /dev/null
+++ b/LOLAPP/LOLAPP/Modele/Champion.cs
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.Serialization;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace LOLAPP.Modele
+{
+ [DataContract]
+ public class Champion
+ {
+ [DataMember]
+ public string Name { get; set; }
+ [DataMember]
+ public List Abilities { get; set; }
+
+ public Champion(string name, List abilities)
+ {
+ // Le constructeur de la classe Champion initialise le nom et les abilités du champion.
+ Name = name;
+ Abilities = abilities;
+ }
+ public Champion(string name)
+ {
+ // Le constructeur de la classe Champion initialise le nom et les abilités du champion.
+ Name = name;
+ Abilities = null;
+ }
+ }
+}
diff --git a/LOLAPP/LOLAPP/Modele/IPersistanceManager.cs b/LOLAPP/LOLAPP/Modele/IPersistanceManager.cs
new file mode 100644
index 0000000..a9873f1
--- /dev/null
+++ b/LOLAPP/LOLAPP/Modele/IPersistanceManager.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace LOLAPP.Modele
+{
+ public interface IPersistanceManager
+ {
+ (List, List) Chargdon();
+ void Sauvdon(List s, List c);
+ }
+}
diff --git a/LOLAPP/LOLAPP/Modele/Manager.cs b/LOLAPP/LOLAPP/Modele/Manager.cs
new file mode 100644
index 0000000..56c6c7f
--- /dev/null
+++ b/LOLAPP/LOLAPP/Modele/Manager.cs
@@ -0,0 +1,90 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Xml.Linq;
+
+namespace LOLAPP.Modele
+{
+ public class Manager : IPersistanceManager
+ {
+ public List _champions { get; private set; }
+ public List _strategies { get; private set; }
+ public IPersistanceManager Persistance { get; }
+
+ public Manager(IPersistanceManager Pers)
+ {
+ _champions = new List();
+ _strategies = new List();
+ Persistance = Pers;
+ }
+
+ public void AddChampion(Champion champion)
+ {
+ _champions.Add(champion);
+ }
+
+ public void RemoveChampion(Champion champion)
+ {
+ _champions.Remove(champion);
+ }
+
+ public List GetAllChampions()
+ {
+ return _champions;
+ }
+
+
+
+ public void AddAbility(Champion champion, string abilityName)
+ {
+ var ability = new Ability(abilityName);
+ champion.Abilities.Add(ability);
+ }
+
+ public void RemoveAbility(Champion champion, string abilityName)
+ {
+ var ability = champion.Abilities.FirstOrDefault(a => a.Name == abilityName);
+ if (ability != null)
+ {
+ champion.Abilities.Remove(ability);
+ }
+ }
+
+
+
+ public void AddStrategie(Strategie strategie)
+ {
+ _strategies.Add(strategie);
+ }
+
+ public void RemoveStrategie(Strategie strategie)
+ {
+ _strategies.Remove(strategie);
+ }
+
+ public List GetAllStrategies()
+ {
+ return _strategies;
+ }
+
+ public (List, List) Chargdon()
+ {
+ int donnees = Persistance.Chargdon();
+ foreach (var i in donnees.List)
+ {
+ AddStrategie(i);
+ }
+
+ foreach (var j in donnees.List)
+ {
+ AddChampion(j);
+ }
+ }
+ public void Sauvdon(List s, List c)
+ {
+ Persistance.Sauvdon(s, c);
+ }
+ }
+}
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Modele/Strategie.cs b/LOLAPP/LOLAPP/Modele/Strategie.cs
new file mode 100644
index 0000000..7f3f26f
--- /dev/null
+++ b/LOLAPP/LOLAPP/Modele/Strategie.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace LOLAPP.Modele
+{
+ public class Strategie
+ {
+ public string Name { get; set; }
+ public List Champions { get; set; }
+
+ public Strategie(string name, List champions)
+ {
+ // Le constructeur de la classe Strategie initialise le nom et les champions de la stratégie.
+ Name = name;
+ Champions = champions;
+ }
+ }
+}
diff --git a/LOLAPP/LOLAPP/Modele/Stub.cs b/LOLAPP/LOLAPP/Modele/Stub.cs
new file mode 100644
index 0000000..ce21ecd
--- /dev/null
+++ b/LOLAPP/LOLAPP/Modele/Stub.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace LOLAPP.Modele
+{
+ public class Stub
+ {
+ }
+}
diff --git a/LOLAPP/LOLAPP/Platforms/Android/AndroidManifest.xml b/LOLAPP/LOLAPP/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..bdec9b5
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Platforms/Android/MainActivity.cs b/LOLAPP/LOLAPP/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..2b437b5
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Android/MainActivity.cs
@@ -0,0 +1,10 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace LOLAPP;
+
+[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+public class MainActivity : MauiAppCompatActivity
+{
+}
diff --git a/LOLAPP/LOLAPP/Platforms/Android/MainApplication.cs b/LOLAPP/LOLAPP/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..e04a18e
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Android/MainApplication.cs
@@ -0,0 +1,15 @@
+using Android.App;
+using Android.Runtime;
+
+namespace LOLAPP;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/LOLAPP/LOLAPP/Platforms/Android/Resources/values/colors.xml b/LOLAPP/LOLAPP/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..5cd1604
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Platforms/MacCatalyst/AppDelegate.cs b/LOLAPP/LOLAPP/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..7fdc479
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace LOLAPP;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/LOLAPP/LOLAPP/Platforms/MacCatalyst/Info.plist b/LOLAPP/LOLAPP/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..0690e47
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/LOLAPP/LOLAPP/Platforms/MacCatalyst/Program.cs b/LOLAPP/LOLAPP/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..366e192
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace LOLAPP;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/LOLAPP/LOLAPP/Platforms/Tizen/Main.cs b/LOLAPP/LOLAPP/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..932910e
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Tizen/Main.cs
@@ -0,0 +1,16 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace LOLAPP;
+
+class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
diff --git a/LOLAPP/LOLAPP/Platforms/Tizen/tizen-manifest.xml b/LOLAPP/LOLAPP/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..2063295
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Platforms/Windows/App.xaml b/LOLAPP/LOLAPP/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..24a3c08
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/LOLAPP/LOLAPP/Platforms/Windows/App.xaml.cs b/LOLAPP/LOLAPP/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..53aafc3
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,24 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace LOLAPP.WinUI;
+
+///
+/// Provides application-specific behavior to supplement the default Application class.
+///
+public partial class App : MauiWinUIApplication
+{
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
diff --git a/LOLAPP/LOLAPP/Platforms/Windows/Package.appxmanifest b/LOLAPP/LOLAPP/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..91fad05
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/LOLAPP/LOLAPP/Platforms/Windows/app.manifest b/LOLAPP/LOLAPP/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..6241068
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/LOLAPP/LOLAPP/Platforms/iOS/AppDelegate.cs b/LOLAPP/LOLAPP/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..7fdc479
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace LOLAPP;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/LOLAPP/LOLAPP/Platforms/iOS/Info.plist b/LOLAPP/LOLAPP/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..358337b
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/LOLAPP/LOLAPP/Platforms/iOS/Program.cs b/LOLAPP/LOLAPP/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..366e192
--- /dev/null
+++ b/LOLAPP/LOLAPP/Platforms/iOS/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace LOLAPP;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/LOLAPP/LOLAPP/Properties/launchSettings.json b/LOLAPP/LOLAPP/Properties/launchSettings.json
new file mode 100644
index 0000000..c16206a
--- /dev/null
+++ b/LOLAPP/LOLAPP/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Resources/AppIcon/appicon.svg b/LOLAPP/LOLAPP/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..5f04fcf
--- /dev/null
+++ b/LOLAPP/LOLAPP/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Resources/AppIcon/appiconfg.svg b/LOLAPP/LOLAPP/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/LOLAPP/LOLAPP/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Resources/Fonts/OpenSans-Regular.ttf b/LOLAPP/LOLAPP/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..e248a95
Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/LOLAPP/LOLAPP/Resources/Fonts/OpenSans-Semibold.ttf b/LOLAPP/LOLAPP/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..dbc9572
Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/LOLAPP/LOLAPP/Resources/Images/dotnet_bot.svg b/LOLAPP/LOLAPP/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..51b1c33
--- /dev/null
+++ b/LOLAPP/LOLAPP/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/LOLAPP/LOLAPP/Resources/Raw/AboutAssets.txt b/LOLAPP/LOLAPP/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..50b8a7b
--- /dev/null
+++ b/LOLAPP/LOLAPP/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/LOLAPP/LOLAPP/Resources/Splash/splash.svg b/LOLAPP/LOLAPP/Resources/Splash/splash.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/LOLAPP/LOLAPP/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Resources/Styles/Colors.xaml b/LOLAPP/LOLAPP/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..d183ec4
--- /dev/null
+++ b/LOLAPP/LOLAPP/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #512BD4
+ #DFD8F7
+ #2B0B98
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
\ No newline at end of file
diff --git a/LOLAPP/LOLAPP/Resources/Styles/Styles.xaml b/LOLAPP/LOLAPP/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..050b36c
--- /dev/null
+++ b/LOLAPP/LOLAPP/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+