summaryrefslogtreecommitdiff
path: root/DSALib/CritterAttack.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/CritterAttack.cs')
-rw-r--r--DSALib/CritterAttack.cs18
1 files changed, 6 insertions, 12 deletions
diff --git a/DSALib/CritterAttack.cs b/DSALib/CritterAttack.cs
index 0ad4a66..3b0a11d 100644
--- a/DSALib/CritterAttack.cs
+++ b/DSALib/CritterAttack.cs
@@ -1,19 +1,13 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace DSALib
+namespace DSALib
{
public class CritterAttack
{
public CritterAttack(string name, int at, string tp, string comment = "")
{
- this.Name = name;
- this.At = at;
- this.Tp = tp;
- this.Comment = comment;
+ Name = name;
+ At = at;
+ Tp = tp;
+ Comment = comment;
}
public string Name { get; set; }
@@ -24,4 +18,4 @@ namespace DSALib
public string Comment { get; set; }
}
-}
+} \ No newline at end of file