diff options
author | Dennis Kobert <d-kobert@web.de> | 2019-06-11 23:38:13 +0200 |
---|---|---|
committer | Dennis Kobert <d-kobert@web.de> | 2019-06-11 23:38:13 +0200 |
commit | 2fa4a0e50ebfc97059c8b84dbd17e79f9afc8a8d (patch) | |
tree | c3b34ccb2737e347a73768536895cbbaab13cc01 /DSALib/Characters/Being.cs | |
parent | ec991104f56e90d7bb2878da2fe6ed4e585dfc46 (diff) | |
parent | af74efccf8d21e6151022b71f3cacd3fa83024ee (diff) |
Merge branch 'rework-backend'
Diffstat (limited to 'DSALib/Characters/Being.cs')
-rw-r--r-- | DSALib/Characters/Being.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/DSALib/Characters/Being.cs b/DSALib/Characters/Being.cs deleted file mode 100644 index 7ac7341..0000000 --- a/DSALib/Characters/Being.cs +++ /dev/null @@ -1,19 +0,0 @@ -using DiscoBot.DSA_Game.Characters; - -namespace DSALib.Characters -{ - public class Being : Entity - { - public int Lebenspunkte_Basis { get; set; } = 30; - - public int Lebenspunkte_Aktuell { get; set; } = 30; - - public int Ausdauer_Basis { get; set; } = 30; - - public int Ausdauer_Aktuell { get; set; } = 30; - - public int Astralpunkte_Basis { get; set; } = 0; - - public int Astralpunkte_Aktuell { get; set; } = 0; - } -} |