Esempio n. 1
0
            public GoForwardStage(float position, Station station, Platoon platoon)
            {
                _Station = station;
                this._Position = position;
                _Platoon = platoon;

                _Agent = new Standalong.Agent();
            }
Esempio n. 2
0
 public StandalongUser(Game game)
 {
     _Game = game;
     _Agent = new Regulus.Standalong.Agent();
     _Machine = new Regulus.Utility.StageMachine();
     _ConnectProvider = new Regulus.Remoting.Ghost.TProvider<Project.SamebestKeys.IConnect>();
     _OnlineProvider = new Regulus.Remoting.Ghost.TProvider<Project.SamebestKeys.IOnline>();
 }
Esempio n. 3
0
 IdleStage()
 {
     _Agent = new Standalong.Agent();
 }
Esempio n. 4
0
 public User()
 {
     _Agent = new Regulus.Standalong.Agent();
 }
Esempio n. 5
0
 public User()
 {
     _Agent = new Regulus.Standalong.Agent();
 }
Esempio n. 6
0
 public OnlineStage(Regulus.Standalong.Agent agent , Regulus.Remoting.Ghost.TProvider<Project.SamebestKeys.IOnline> provider , Regulus.Projects.SamebestKeys.Standalong.Game game)
 {
     _Game = game;
     _Updater = new Utility.Updater();
     _Agent = agent;
     _Id = Guid.NewGuid();
     _Provider = provider;
 }
Esempio n. 7
0
 public ChoiceStage(ChoicePrototype protorype, ICommandable commandable)
 {
     _ChoicePrototype = protorype;
     _Commandable = commandable;
     _Agent = new Standalong.Agent();
 }