Aura.Channel.Database.Account.Account C# (CSharp) Méthode

Account() public méthode

Creates new account instance.
public Account ( ) : System
Résultat System
		public Account()
		{
			this.Characters = new List<Character>();
			this.Pets = new List<Pet>();
			this.Vars = new ScriptVariables();
			this.Bank = new BankInventory();
			this.PremiumServices = new PremiumServices();

			this.LastLogin = DateTime.Now;
		}