Aura.Channel.Database.Account.Account C# (CSharp) 메소드

Account() 공개 메소드

Creates new account instance.
public Account ( ) : System
리턴 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;
		}