示例#1
0
文件: Core.cs 项目: jiowchern/Regulus
 private void _ToFirstAdventure(GameRecord record, Adventurer adv)
 {
     _StatusEvent(UserStatus.Adventure);
     var stage = new Regulus.Project.ExiledPrincesses.Game.Stage.Adventure(adv, _Binder, _Zone);
     stage.ToToneEvent += (tone) =>
     {
         _AccountInfomation.Record = record;
         _ToTown(tone);
     };
     _StageMachine.Push(stage);
 }
示例#2
0
文件: Core.cs 项目: jiowchern/Regulus
 private void _ToAdventure(Adventurer adventurer)
 {
     _StatusEvent(UserStatus.Adventure);
     var stage = new Regulus.Project.ExiledPrincesses.Game.Stage.Adventure(adventurer , _Binder , _Zone);
     stage.ToToneEvent += _ToTown ;
     _StageMachine.Push(stage);
 }