Correction of location of file

I added in the wrong module folder, now corrected.
This commit is contained in:
Pg 2016-11-26 03:33:56 +01:00
parent 9dc3b33ed1
commit d82c399a5a

View File

@ -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<ulong> LastAttacked { get; set; } = new List<ulong>();
}
}