From d82c399a5a9740baabfd18556fc346376b12c541 Mon Sep 17 00:00:00 2001 From: Pg Date: Sat, 26 Nov 2016 03:33:56 +0100 Subject: [PATCH] Correction of location of file I added in the wrong module folder, now corrected. --- .../Modules/Searches/Commands/Models/PokeStats.cs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/NadekoBot/Modules/Searches/Commands/Models/PokeStats.cs diff --git a/src/NadekoBot/Modules/Searches/Commands/Models/PokeStats.cs b/src/NadekoBot/Modules/Searches/Commands/Models/PokeStats.cs deleted file mode 100644 index b9795043..00000000 --- a/src/NadekoBot/Modules/Searches/Commands/Models/PokeStats.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System.Collections.Generic; - -namespace NadekoBot.Modules.Pokemon -{ - class PokeStats - { - //Health left - public int Hp { get; set; } = 500; - public int MaxHp { get; } = 500; - //Amount of moves made since last time attacked - public int MovesMade { get; set; } = 0; - //Last people attacked - public List LastAttacked { get; set; } = new List(); - } -}