summaryrefslogtreecommitdiff
path: root/DSALib/CritterAttack.cs
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-06-11 23:38:13 +0200
committerDennis Kobert <d-kobert@web.de>2019-06-11 23:38:13 +0200
commit2fa4a0e50ebfc97059c8b84dbd17e79f9afc8a8d (patch)
treec3b34ccb2737e347a73768536895cbbaab13cc01 /DSALib/CritterAttack.cs
parentec991104f56e90d7bb2878da2fe6ed4e585dfc46 (diff)
parentaf74efccf8d21e6151022b71f3cacd3fa83024ee (diff)
Merge branch 'rework-backend'
Diffstat (limited to 'DSALib/CritterAttack.cs')
-rw-r--r--DSALib/CritterAttack.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/DSALib/CritterAttack.cs b/DSALib/CritterAttack.cs
deleted file mode 100644
index 0ad4a66..0000000
--- a/DSALib/CritterAttack.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-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;
- }
-
- public string Name { get; set; }
-
- public int At { get; set; }
-
- public string Tp { get; set; }
-
- public string Comment { get; set; }
- }
-}