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