1 package org.cyberiantiger.console;
2
3 public class ResizeConsoleAction extends AbstractConsoleAction {
4
5 private int x;
6 private int y;
7
8 public ResizeConsoleAction(int x, int y) {
9 this.x = x;
10 this.y = y;
11 }
12
13 public void apply(Console con) {
14 con.resize(x,y);
15 }
16 }
This page was automatically generated by Maven