aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/gui/Console.java
blob: 900853129439544b1c0d8cfb9882a868029646ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package jcgp.gui;

import javafx.scene.control.TextArea;

public class Console extends TextArea {

	public Console() {
		super();
		setDisable(true);
		setPrefHeight(100);
	}
	
}