예제 #1
0
 public Right(WrapperOverPoint location, int step, int maximumScreenWidth, int widthFrame)
 {
     this.location           = location;
     this.step               = step;
     this.maximumScreenWidth = maximumScreenWidth;
     this.widthFrame         = widthFrame;
 }
예제 #2
0
 public Down(WrapperOverPoint location, int step, int maximumScreenHeight, int heightFrame)
 {
     this.location            = location;
     this.step                = step;
     this.maximumScreenHeight = maximumScreenHeight;
     this.heightFrame         = heightFrame;
 }
예제 #3
0
 public Up(WrapperOverPoint location, int step)
 {
     this.location = location;
     this.step     = step;
 }