示例#1
0
文件: User.cs 项目: jiowchern/Regulus
 public User(Remoting.ISoulBinder binder, IStorage _Storage , Zone zone)
 {
     this._Binder = binder;
     _Zone = zone;
     _Binder.BreakEvent += _Break;
     this._Storage = _Storage;
     _Machine = new Regulus.Utility.StageMachine();
 }
示例#2
0
文件: Game.cs 项目: jiowchern/Regulus
 public Game(IStorage stroage)
 {
     _Zone = new Zone();
     _Storage = stroage;
     _Update = new Utility.Updater();
 }
示例#3
0
 public PlayStage(Remoting.ISoulBinder binder, Snake snake , Zone zone)
 {
     this._Binder = binder;
     this._Snake = snake;
     _Zone = zone;
 }