summaryrefslogtreecommitdiff
path: root/DSALib/CritterAttack.cs
diff options
context:
space:
mode:
authoruzvkl <dennis.kobert@student.kit.edu>2019-05-20 00:54:14 +0200
committeruzvkl <dennis.kobert@student.kit.edu>2019-05-20 00:54:14 +0200
commited26623e17e8dfcc036f88cca6de10d5a35697ec (patch)
tree26dae8b824631e6542c876c82ce0e15260c411bc /DSALib/CritterAttack.cs
parent2ab4051c6fe720dc47e99b0c305a0d779ee02d51 (diff)
Reorganize Code delete ZoBotanica
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