AuntieDot.AuntieDotManager.AuntieDotManager C# (CSharp) Method

AuntieDotManager() public method

Initalize a new Instance of AuntieDot. The most badass, cigar chompiest HaloWaypoint Stat Wrapper there is!
public AuntieDotManager ( string spartanToken, string gamertagFromAuth ) : AuntieDot.Core
spartanToken string The 343 Spartan Token, this can be obtained in AuntieDot.Authentication
gamertagFromAuth string The gamertag that was used in the original WLID OAuth process.
return AuntieDot.Core
        public AuntieDotManager(string spartanToken, string gamertagFromAuth)
        {
            _settings = new Settings
            {
                Language = "en-US",
                Game = "h4",
                SpartanToken = spartanToken,
                GamertagFromAuth = gamertagFromAuth
            };

            ServicesList = new ServicesList();
        }