aboutsummaryrefslogtreecommitdiff
path: root/V3/AchievementsAndStatistics.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/AchievementsAndStatistics.cs')
-rw-r--r--V3/AchievementsAndStatistics.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/V3/AchievementsAndStatistics.cs b/V3/AchievementsAndStatistics.cs
new file mode 100644
index 0000000..65419d7
--- /dev/null
+++ b/V3/AchievementsAndStatistics.cs
@@ -0,0 +1,31 @@
+using System;
+
+namespace V3
+{
+ /// <summary>
+ /// This is a class for all datas of the achievementsand the statistics.
+ /// </summary>
+ // ReSharper disable once ClassNeverInstantiated.Global
+ public sealed class AchievementsAndStatistics
+ {
+ public bool mKillPrince = false;
+ public bool mKillKing = false;
+ public bool mHellsNotWaiting = false;
+ public bool mKaboom = false;
+
+ public float mMarathonRunner = 0;
+ public float mIronMan = 0;
+ public int mMeatballCompany = 0;
+ public int mSkeletonHorseCavalry = 0;
+ public int mRightHandOfDeath = 0;
+ public int mMinimalist = 0;
+ public int mHundredDeadCorpses = 0;
+ public int mUndeadArmy = 0;
+
+ public int mKilledCreatures = 00000;
+ public int mLostServants = 00000;
+ public float mWalkedDistance = 00000;
+
+ public DateTime mUsedTime;
+ }
+}