summaryrefslogtreecommitdiff
path: root/DSALib/CritterAttack.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/CritterAttack.cs')
-rw-r--r--DSALib/CritterAttack.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/DSALib/CritterAttack.cs b/DSALib/CritterAttack.cs
deleted file mode 100644
index 3b0a11d..0000000
--- a/DSALib/CritterAttack.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace DSALib
-{
- public class CritterAttack
- {
- public CritterAttack(string name, int at, string tp, string comment = "")
- {
- Name = name;
- At = at;
- Tp = tp;
- Comment = comment;
- }
-
- public string Name { get; set; }
-
- public int At { get; set; }
-
- public string Tp { get; set; }
-
- public string Comment { get; set; }
- }
-} \ No newline at end of file