public Right(WrapperOverPoint location, int step, int maximumScreenWidth, int widthFrame) { this.location = location; this.step = step; this.maximumScreenWidth = maximumScreenWidth; this.widthFrame = widthFrame; }
public Down(WrapperOverPoint location, int step, int maximumScreenHeight, int heightFrame) { this.location = location; this.step = step; this.maximumScreenHeight = maximumScreenHeight; this.heightFrame = heightFrame; }
public Up(WrapperOverPoint location, int step) { this.location = location; this.step = step; }