diff --git a/LOLAPP/LOLAPP/DataContractPersistance/DataContract.cs b/LOLAPP/LOLAPP/DataContractPersistance/DataContract.cs index ec67958..833975f 100644 --- a/LOLAPP/LOLAPP/DataContractPersistance/DataContract.cs +++ b/LOLAPP/LOLAPP/DataContractPersistance/DataContract.cs @@ -1,21 +1,16 @@ using LOLAPP.Modele; -using System; -using System.Collections.Concurrent; -using System.Collections.Generic; using System.Diagnostics; -using System.Linq; using System.Runtime.Serialization; -using System.Text; -using System.Threading.Tasks; using System.Xml; + namespace LOLAPP.DataContractPersistance { public class DataContract : IPersistanceManager { - public string FilePath { get; set; } = FileSystem.AppDataDirectory; - public string FileNameC { get; set; } = "champions.xml"; - public string FileNameU { get; set; } = "utilisateur.xml"; + public string FilePath { get; set; } = FileSystem.Current.AppDataDirectory; + public string FileNameC { get; set; } = "championsSave.xml"; + public string FileNameU { get; set; } = "utilisateurSave.xml"; public (List, List) Chargdon() { @@ -23,16 +18,31 @@ namespace LOLAPP.DataContractPersistance var utilserializer = new DataContractSerializer(typeof(List)); List util = new List(); List champ = new List(); + DataToPersist data; - using (Stream champstream = File.OpenRead(Path.Combine(FilePath, FileNameC))) - { - DataToPersist data = champserializer.ReadObject(champstream) as DataToPersist; - champ = data.champ; + if (File.Exists(Path.Combine(FilePath, FileNameC))) // Vérifiez si le fichier existe + { + using (Stream champstream = File.OpenRead(Path.Combine(FilePath, FileNameC))) + { + data = champserializer.ReadObject(champstream) as DataToPersist; + champ = data.champ; + } + } + else + { + data = new DataToPersist(); // Si le fichier n'existe pas, créez une nouvelle liste } - using (Stream utilstream = File.OpenRead(Path.Combine(FilePath, FileNameU))) + if (File.Exists(Path.Combine(FilePath, FileNameU))) // Vérifiez si le fichier existe + { + using (Stream utilstream = File.OpenRead(Path.Combine(FilePath, FileNameU))) + { + util = utilserializer.ReadObject(utilstream) as List; + } + } + else { - util = utilserializer.ReadObject(utilstream) as List; + util = new List(); // Si le fichier n'existe pas, créez une nouvelle liste } return (champ, util); } diff --git a/LOLAPP/LOLAPP/Modele/Champion.cs b/LOLAPP/LOLAPP/Modele/Champion.cs index b4de732..7c93d7b 100644 --- a/LOLAPP/LOLAPP/Modele/Champion.cs +++ b/LOLAPP/LOLAPP/Modele/Champion.cs @@ -27,7 +27,6 @@ namespace LOLAPP.Modele Image = image; Abilities = abilities; } - public Champion(string name, string titre, string image) { // Le constructeur de la classe Champion initialise le nom et les abilités du champion. diff --git a/LOLAPP/LOLAPP/Modele/Manager.cs b/LOLAPP/LOLAPP/Modele/Manager.cs index a438b9f..c711412 100644 --- a/LOLAPP/LOLAPP/Modele/Manager.cs +++ b/LOLAPP/LOLAPP/Modele/Manager.cs @@ -11,21 +11,18 @@ namespace LOLAPP.Modele public class Manager { public List _champions { get; set; } - public List _strategies { get; set; } public List _utilisateur { get; set; } public IPersistanceManager Persistance { get; set; } public Manager(IPersistanceManager Pers) { _champions = new List(); - _strategies = new List(); _utilisateur = new List(); Persistance = Pers; } public Manager() { _champions = new List(); - _strategies = new List(); _utilisateur = new List(); } @@ -40,14 +37,14 @@ namespace LOLAPP.Modele _utilisateur.Remove(utilisateur); } - - + public void Chargdon() { var don = Persistance.Chargdon(); _champions.AddRange(don.Item1); _utilisateur.AddRange(don.Item2); } + public void Sauvdon() { Persistance.Sauvdon(_champions, _utilisateur); diff --git a/LOLAPP/LOLAPP/Modele/Strategie.cs b/LOLAPP/LOLAPP/Modele/Strategie.cs index 8bc9b83..47f6d7c 100644 --- a/LOLAPP/LOLAPP/Modele/Strategie.cs +++ b/LOLAPP/LOLAPP/Modele/Strategie.cs @@ -17,10 +17,11 @@ namespace LOLAPP.Modele [DataMember] public List Champions { get; private set; } - public Strategie(string name, List champions) + public Strategie(string name, string description, List champions) { // Le constructeur de la classe Strategie initialise le nom et les champions de la stratégie. Name = name; + Description = description; Champions = champions; } } diff --git a/LOLAPP/LOLAPP/Modele/Stub.cs b/LOLAPP/LOLAPP/Modele/Stub.cs index 8775740..b4d51c7 100644 --- a/LOLAPP/LOLAPP/Modele/Stub.cs +++ b/LOLAPP/LOLAPP/Modele/Stub.cs @@ -15,73 +15,73 @@ namespace LOLAPP.Modele List c = new List(); List a = new List(); - Ability c1a1 = new Ability("Runic Blade", "RunicBlade.jpg", "Riven's abilities charge her blade, and her basic attacks expend charges to deal an additional damage."); - Ability c1a2 = new Ability("Broken Wings", "BrokenWings.jpg", "Riven lashes out in a series of strikes. This ability can be reactivated three times in a short time frame with the third hit knocking back nearby enemies."); - Ability c1a3 = new Ability("Ki Burst", "KiBurst.jpg", "Riven emits a Ki Burst, damaging and stunning nearby enemies."); - Ability c1a4 = new Ability("Valor", "Valor.jpg", "Riven steps forward a short distance and blocks incoming damage."); - Ability c1a5 = new Ability("Blade of the Exile", "BladeoftheExile.jpg", "Riven empowers her keepsake weapon with energy, and gains Attack Damage and Range. During this time, she also gains the ability to use Wind Slash, a powerful ranged attack, once."); + Ability c1a1 = new Ability("Runic Blade", "runicblade.jpg", "Riven's abilities charge her blade, and her basic attacks expend charges to deal an additional damage."); + Ability c1a2 = new Ability("Broken Wings", "brokenwings.jpg", "Riven lashes out in a series of strikes. This ability can be reactivated three times in a short time frame with the third hit knocking back nearby enemies."); + Ability c1a3 = new Ability("Ki Burst", "kiburst.jpg", "Riven emits a Ki Burst, damaging and stunning nearby enemies."); + Ability c1a4 = new Ability("Valor", "valor.jpg", "Riven steps forward a short distance and blocks incoming damage."); + Ability c1a5 = new Ability("Blade of the Exile", "bladeoftheexile.jpg", "Riven empowers her keepsake weapon with energy, and gains Attack Damage and Range. During this time, she also gains the ability to use Wind Slash, a powerful ranged attack, once."); a.Add(c1a1); a.Add(c1a2); a.Add(c1a3); a.Add(c1a4); a.Add(c1a5); - Champion c1 = new Champion("Riven","The Exile", "Riven.jpg", a); + Champion c1 = new Champion("Riven","The Exile", "riven.jpg", a); c.Add(c1); a.Clear(); - Ability c2a1 = new Ability("Rage Gene", "RageGene.jpg", "While in combat Gnar generates Rage. At maximum Rage his next ability will transform him into Mega Gnar, granting increased survivability and access to new spells."); - Ability c2a2 = new Ability("Boomerang Throw / Boulder Toss", "BoomerangThrow/BoulderToss.jpg", "Gnar throws a boomerang that damages and slows enemies it hits before returning to him. If he catches the boomerang its cooldown is reduced.\r\n\r\nMega Gnar instead throws a boulder that stops on the first unit hit, damaging and slowing everything nearby. It can then be picked up to reduce the cooldown."); - Ability c2a3 = new Ability("Hyper / Wallop", "Hyper/Wallop.jpg", "Gnar's attacks and spells hype him up, dealing bonus damage and granting him Movement Speed.\r\n\r\nMega Gnar is too enraged to be hyper and instead can rear up on his hind legs and smash down on the area in front of him, stunning enemies in an area."); - Ability c2a4 = new Ability("Hop / Crunch", "Hop/Crunch.jpg", "Gnar leaps to a location and bounces off the head of any unit he lands on, traveling further.\r\n\r\nMega Gnar is too large to bounce and instead lands with earth-shattering force, dealing damage in an area around him."); - Ability c2a5 = new Ability("GNAR!", "GNAR!.jpg", "Mega Gnar throws everything around him in a chosen direction, dealing damage and slowing them. Any enemy that hits a wall is stunned and takes bonus damage."); + Ability c2a1 = new Ability("Rage Gene", "ragegene.jpg", "While in combat Gnar generates Rage. At maximum Rage his next ability will transform him into Mega Gnar, granting increased survivability and access to new spells."); + Ability c2a2 = new Ability("Boomerang Throw / Boulder Toss", "boomerangthrow.jpg", "Gnar throws a boomerang that damages and slows enemies it hits before returning to him. If he catches the boomerang its cooldown is reduced.\r\n\r\nMega Gnar instead throws a boulder that stops on the first unit hit, damaging and slowing everything nearby. It can then be picked up to reduce the cooldown."); + Ability c2a3 = new Ability("Hyper / Wallop", "hyper.jpg", "Gnar's attacks and spells hype him up, dealing bonus damage and granting him Movement Speed.\r\n\r\nMega Gnar is too enraged to be hyper and instead can rear up on his hind legs and smash down on the area in front of him, stunning enemies in an area."); + Ability c2a4 = new Ability("Hop / Crunch", "hop.jpg", "Gnar leaps to a location and bounces off the head of any unit he lands on, traveling further.\r\n\r\nMega Gnar is too large to bounce and instead lands with earth-shattering force, dealing damage in an area around him."); + Ability c2a5 = new Ability("GNAR!", "gnarr.jpg", "Mega Gnar throws everything around him in a chosen direction, dealing damage and slowing them. Any enemy that hits a wall is stunned and takes bonus damage."); a.Add(c2a1); a.Add(c2a2); a.Add(c2a3); a.Add(c2a4); a.Add(c2a5); - Champion c2 = new Champion("Gnar", "The Missing Link", "Gnar.jpg", a); + Champion c2 = new Champion("Gnar", "The Missing Link", "gnar.jpg", a); c.Add(c2); a.Clear(); - Ability c3a1 = new Ability("Daredevil Impulse", "DaredevilImpulse.jpg", "Samira builds a combo by hitting attacks or abilities unique from the previous hit. Samira's attacks in melee range deal additional magic damage. Samira's attacks against enemies affected by Immobilizing effects will dash her to her attack range. If the enemy is Knocked Up, she also keeps them Knocked Up briefly."); - Ability c3a2 = new Ability("Flair", "Flair.jpg", "Samira fires a shot or swings her sword, dealing damage. If cast during Wild Rush, strike all enemies in her path upon completion."); - Ability c3a3 = new Ability("Blade Whirl", "BladeWhirl.jpg", "Samira slashes around her, damaging enemies and destroying enemy missiles."); - Ability c3a4 = new Ability("Wild Rush", "WildRush.jpg", "Samira dashes through an enemy (including structures), slashing enemies she passes through and gaining Attack Speed. Killing an enemy champion refreshes this ability's cooldown."); - Ability c3a5 = new Ability("Inferno Trigger", "InfernoTrigger.jpg", "Samira unleashes a torrent of shots from her weapons, wildly shooting all enemies surrounding her."); + Ability c3a1 = new Ability("Daredevil Impulse", "daredevilimpulse.jpg", "Samira builds a combo by hitting attacks or abilities unique from the previous hit. Samira's attacks in melee range deal additional magic damage. Samira's attacks against enemies affected by Immobilizing effects will dash her to her attack range. If the enemy is Knocked Up, she also keeps them Knocked Up briefly."); + Ability c3a2 = new Ability("Flair", "flair.jpg", "Samira fires a shot or swings her sword, dealing damage. If cast during Wild Rush, strike all enemies in her path upon completion."); + Ability c3a3 = new Ability("Blade Whirl", "bladewhirl.jpg", "Samira slashes around her, damaging enemies and destroying enemy missiles."); + Ability c3a4 = new Ability("Wild Rush", "wildrush.jpg", "Samira dashes through an enemy (including structures), slashing enemies she passes through and gaining Attack Speed. Killing an enemy champion refreshes this ability's cooldown."); + Ability c3a5 = new Ability("Inferno Trigger", "infernotrigger.jpg", "Samira unleashes a torrent of shots from her weapons, wildly shooting all enemies surrounding her."); a.Add(c1a1); a.Add(c1a2); a.Add(c1a3); a.Add(c1a4); a.Add(c1a5); - Champion c3 = new Champion("Samira", "The Desert Rose", "Samira.jpg", a); + Champion c3 = new Champion("Samira", "The Desert Rose", "samira.jpg", a); c.Add(c3); a.Clear(); - Ability c4a1 = new Ability("Bop 'n' Block", "Bop'n'Block.jpg", "Periodically, when Yuumi attacks a champion, she restores mana and gains a shield that follows her, protecting her and the ally she's attached to."); - Ability c4a2 = new Ability("Prowling Projectile", "ProwlingProjectile.jpg", "Yuumi fires a missile, dealing damage to the first target hit. It deals bonus damage and slows if it takes at least 1 second to get to its target.\r\n\r\nWhile Attached, the missile can be controlled with your cursor."); - Ability c4a3 = new Ability("You and Me!", "YouandMe!.jpg", "Passively, Yuumi increases her ally's Adaptive Force and her own. Actively, Yuumi dashes to a target ally, becoming untargetable from everything except turrets."); - Ability c4a4 = new Ability("Zoomies", "Zoomies.jpg", "Heals Yuumi and boosts Movement Speed and Attack Speed. If she's attached, she passes it to her ally instead."); - Ability c4a5 = new Ability("Final Chapter", "FinalChapter.jpg", "Yuumi channels seven waves of damage, rooting anyone hit by three or more. Yuumi can move, attach, and cast Zoomies! while channeling."); + Ability c4a1 = new Ability("Bop 'n' Block", "bopnblock.jpg", "Periodically, when Yuumi attacks a champion, she restores mana and gains a shield that follows her, protecting her and the ally she's attached to."); + Ability c4a2 = new Ability("Prowling Projectile", "prowlingprojectile.jpg", "Yuumi fires a missile, dealing damage to the first target hit. It deals bonus damage and slows if it takes at least 1 second to get to its target.\r\n\r\nWhile Attached, the missile can be controlled with your cursor."); + Ability c4a3 = new Ability("You and Me!", "youandme.jpg", "Passively, Yuumi increases her ally's Adaptive Force and her own. Actively, Yuumi dashes to a target ally, becoming untargetable from everything except turrets."); + Ability c4a4 = new Ability("Zoomies", "zoomies.jpg", "Heals Yuumi and boosts Movement Speed and Attack Speed. If she's attached, she passes it to her ally instead."); + Ability c4a5 = new Ability("Final Chapter", "finalchapter.jpg", "Yuumi channels seven waves of damage, rooting anyone hit by three or more. Yuumi can move, attach, and cast Zoomies! while channeling."); a.Add(c4a1); a.Add(c4a2); a.Add(c4a3); a.Add(c4a4); a.Add(c4a5); - Champion c4 = new Champion("Yuumi", "The Magical Cat", "Yuumi.jpg", a); + Champion c4 = new Champion("Yuumi", "The Magical Cat", "yuumi.jpg", a); c.Add(c4); a.Clear(); - Ability c5a1 = new Ability("The Relentless Storm", "TheRelentlessStorm.jpg", "Riven's abilities charge her blade, and her basic attacks expend charges to deal an additional damage."); - Ability c5a2 = new Ability("Thundering Smash", "ThunderingSmash.jpg", "Riven lashes out in a series of strikes. This ability can be reactivated three times in a short time frame with the third hit knocking back nearby enemies."); - Ability c5a3 = new Ability("Frenzied Maul", "FrenziedMaul.jpg", "Riven emits a Ki Burst, damaging and stunning nearby enemies."); - Ability c5a4 = new Ability("Sky Splitter", "SkySplitter.jpg", "Riven steps forward a short distance and blocks incoming damage."); - Ability c5a5 = new Ability("Stormbringer", "Stormbringer.jpg", "Riven empowers her keepsake weapon with energy, and gains Attack Damage and Range. During this time, she also gains the ability to use Wind Slash, a powerful ranged attack, once."); + Ability c5a1 = new Ability("The Relentless Storm", "therelentlessstorm.jpg", "Riven's abilities charge her blade, and her basic attacks expend charges to deal an additional damage."); + Ability c5a2 = new Ability("Thundering Smash", "thunderingsmash.jpg", "Riven lashes out in a series of strikes. This ability can be reactivated three times in a short time frame with the third hit knocking back nearby enemies."); + Ability c5a3 = new Ability("Frenzied Maul", "frenziedmaul.jpg", "Riven emits a Ki Burst, damaging and stunning nearby enemies."); + Ability c5a4 = new Ability("Sky Splitter", "skysplitter.jpg", "Riven steps forward a short distance and blocks incoming damage."); + Ability c5a5 = new Ability("Stormbringer", "stormbringer.jpg", "Riven empowers her keepsake weapon with energy, and gains Attack Damage and Range. During this time, she also gains the ability to use Wind Slash, a powerful ranged attack, once."); a.Add(c5a1); a.Add(c5a2); a.Add(c5a3); a.Add(c5a4); a.Add(c5a5); - Champion c5 = new Champion("Volibear", "The Relentless Storm", "Volibear.jpg", a); + Champion c5 = new Champion("Volibear", "The Relentless Storm", "volibear.jpg", a); c.Add(c5); a.Clear(); diff --git a/LOLAPP/LOLAPP/Modele/Utilisateur.cs b/LOLAPP/LOLAPP/Modele/Utilisateur.cs index 5dce044..a6601e7 100644 --- a/LOLAPP/LOLAPP/Modele/Utilisateur.cs +++ b/LOLAPP/LOLAPP/Modele/Utilisateur.cs @@ -17,6 +17,12 @@ namespace LOLAPP.Modele [DataMember] public List _strat { get; private set; } + public Utilisateur(string username, string password, List strat) + { + Username = username; + Password = password; + _strat = strat; + } public Utilisateur(string username,string password) { Username = username; diff --git a/LOLAPP/LOLAPP/Resources/AppIcon/appicon.svg b/LOLAPP/LOLAPP/Resources/AppIcon/appicon.svg index 5f04fcf..d1e2394 100644 --- a/LOLAPP/LOLAPP/Resources/AppIcon/appicon.svg +++ b/LOLAPP/LOLAPP/Resources/AppIcon/appicon.svg @@ -1,4 +1,1171 @@ - - - - \ No newline at end of file + + + + diff --git a/LOLAPP/LOLAPP/Resources/Images/bladeoftheexile.png b/LOLAPP/LOLAPP/Resources/Images/bladeoftheexile.png new file mode 100644 index 0000000..85edcad Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/bladeoftheexile.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/bladewhirl.png b/LOLAPP/LOLAPP/Resources/Images/bladewhirl.png new file mode 100644 index 0000000..6c2a035 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/bladewhirl.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/boomerangthrow.png b/LOLAPP/LOLAPP/Resources/Images/boomerangthrow.png new file mode 100644 index 0000000..a0ba02f Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/boomerangthrow.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/bopnblock.png b/LOLAPP/LOLAPP/Resources/Images/bopnblock.png new file mode 100644 index 0000000..9d4ced8 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/bopnblock.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/brokenwings.png b/LOLAPP/LOLAPP/Resources/Images/brokenwings.png new file mode 100644 index 0000000..a5ec2c0 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/brokenwings.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/daredevilimpulse.png b/LOLAPP/LOLAPP/Resources/Images/daredevilimpulse.png new file mode 100644 index 0000000..a204257 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/daredevilimpulse.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/dotnet_bot.svg b/LOLAPP/LOLAPP/Resources/Images/dotnet_bot.svg deleted file mode 100644 index 51b1c33..0000000 --- a/LOLAPP/LOLAPP/Resources/Images/dotnet_bot.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/LOLAPP/LOLAPP/Resources/Images/finalchapter.png b/LOLAPP/LOLAPP/Resources/Images/finalchapter.png new file mode 100644 index 0000000..aa57d95 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/finalchapter.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/flair.png b/LOLAPP/LOLAPP/Resources/Images/flair.png new file mode 100644 index 0000000..7b32df0 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/flair.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/frenziedmaul.png b/LOLAPP/LOLAPP/Resources/Images/frenziedmaul.png new file mode 100644 index 0000000..72a6b36 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/frenziedmaul.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/gnar.jpg b/LOLAPP/LOLAPP/Resources/Images/gnar.jpg new file mode 100644 index 0000000..66999e8 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/gnar.jpg differ diff --git a/LOLAPP/LOLAPP/Resources/Images/gnarr.png b/LOLAPP/LOLAPP/Resources/Images/gnarr.png new file mode 100644 index 0000000..10d0649 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/gnarr.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/hop.png b/LOLAPP/LOLAPP/Resources/Images/hop.png new file mode 100644 index 0000000..5230bd7 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/hop.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/hyper.png b/LOLAPP/LOLAPP/Resources/Images/hyper.png new file mode 100644 index 0000000..203d5f3 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/hyper.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/infernotrigger.png b/LOLAPP/LOLAPP/Resources/Images/infernotrigger.png new file mode 100644 index 0000000..d2909e4 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/infernotrigger.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/kiburst.png b/LOLAPP/LOLAPP/Resources/Images/kiburst.png new file mode 100644 index 0000000..8a05100 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/kiburst.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/prowlingprojectile.png b/LOLAPP/LOLAPP/Resources/Images/prowlingprojectile.png new file mode 100644 index 0000000..3f09852 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/prowlingprojectile.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/ragegene.png b/LOLAPP/LOLAPP/Resources/Images/ragegene.png new file mode 100644 index 0000000..2dddfa2 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/ragegene.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/riven.jpg b/LOLAPP/LOLAPP/Resources/Images/riven.jpg new file mode 100644 index 0000000..d016e90 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/riven.jpg differ diff --git a/LOLAPP/LOLAPP/Resources/Images/runicblade.png b/LOLAPP/LOLAPP/Resources/Images/runicblade.png new file mode 100644 index 0000000..8b8053b Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/runicblade.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/samira.jpg b/LOLAPP/LOLAPP/Resources/Images/samira.jpg new file mode 100644 index 0000000..c5f7b68 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/samira.jpg differ diff --git a/LOLAPP/LOLAPP/Resources/Images/skysplitter.png b/LOLAPP/LOLAPP/Resources/Images/skysplitter.png new file mode 100644 index 0000000..da4015d Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/skysplitter.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/stormbringer.png b/LOLAPP/LOLAPP/Resources/Images/stormbringer.png new file mode 100644 index 0000000..dcc6563 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/stormbringer.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/therelentlessstorm.png b/LOLAPP/LOLAPP/Resources/Images/therelentlessstorm.png new file mode 100644 index 0000000..5fe1f4d Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/therelentlessstorm.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/thunderingsmash.png b/LOLAPP/LOLAPP/Resources/Images/thunderingsmash.png new file mode 100644 index 0000000..1a2ccb0 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/thunderingsmash.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/valor.png b/LOLAPP/LOLAPP/Resources/Images/valor.png new file mode 100644 index 0000000..bfb1047 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/valor.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/volibear.jpg b/LOLAPP/LOLAPP/Resources/Images/volibear.jpg new file mode 100644 index 0000000..82fd5a0 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/volibear.jpg differ diff --git a/LOLAPP/LOLAPP/Resources/Images/wildrush.png b/LOLAPP/LOLAPP/Resources/Images/wildrush.png new file mode 100644 index 0000000..bf95d02 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/wildrush.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/youandme.png b/LOLAPP/LOLAPP/Resources/Images/youandme.png new file mode 100644 index 0000000..db3b325 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/youandme.png differ diff --git a/LOLAPP/LOLAPP/Resources/Images/yuumi.jpg b/LOLAPP/LOLAPP/Resources/Images/yuumi.jpg new file mode 100644 index 0000000..3a72560 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/yuumi.jpg differ diff --git a/LOLAPP/LOLAPP/Resources/Images/zoomies.png b/LOLAPP/LOLAPP/Resources/Images/zoomies.png new file mode 100644 index 0000000..91fd8d5 Binary files /dev/null and b/LOLAPP/LOLAPP/Resources/Images/zoomies.png differ diff --git a/LOLAPP/LOLAPP/View/Main.xaml b/LOLAPP/LOLAPP/View/Main.xaml index 7e880bc..39cba28 100644 --- a/LOLAPP/LOLAPP/View/Main.xaml +++ b/LOLAPP/LOLAPP/View/Main.xaml @@ -1,9 +1,10 @@ - + + Title="Main"> @@ -18,14 +19,19 @@