aboutsummaryrefslogtreecommitdiff
path: root/V3/AchievementsAndStatistics.cs
blob: 65419d79f8ef5ec35c416b1f462cd0fd3a63ff85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
    }
}