示例#1
0
        private void NewAccount(C.NewAccount p)
        {
            if (Stage != GameStage.Login)
            {
                return;
            }

            SMain.Envir.NewAccount(p, this);
        }
示例#2
0
        public AccountInfo(C.NewAccount p)
        {
            AccountID      = p.AccountID;
            Password       = p.Password;
            UserName       = p.UserName;
            SecretQuestion = p.SecretQuestion;
            SecretAnswer   = p.SecretAnswer;
            EMailAddress   = p.EMailAddress;

            BirthDate    = p.BirthDate;
            CreationDate = Envir.Now;
        }