Пример #1
0
        public static ControlContext create(VInput input)
        {
            var self = new ControlContext(input);

            self.setCradle(new Cradle(self));
            return(self);
        }
Пример #2
0
 public RlViewServices(ControlContext ctrlCtx, RlGameContext gameCtx, PosUtil posUtil)
 {
     this.gameCtx  = gameCtx;
     this.cradle   = ctrlCtx.cradle;
     this.posUtil  = posUtil;
     this.input    = ctrlCtx.input;
     this.viewUtil = new RlEventViewUtils(this.posUtil, this.input);
 }
Пример #3
0
 internal ControlContext(VInput input)
 {
     this.input  = input;
     this.cradle = null;
 }
Пример #4
0
 public RlEventViewUtils(PosUtil p, VInput input)
 {
     this.posUtil = p;
     this.input   = input;
 }