fix(Data) Zard's pointed out fixes

I also need to handle DPS vs Charges for attacks
This commit is contained in:
2022-05-04 18:13:34 -04:00
parent bfcf784210
commit 78deb6055c
5 changed files with 30 additions and 9 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Model.Entity.Types;
public static class AttackType
{
public static string DPS = "DPS";
public static string Charges = "Charges";
}
+1 -1
View File
@@ -1,4 +1,4 @@
namespace Model.Types;
namespace Model.Entity.Types;
public static class TargetType
{