blob: 184afceb1ee0719575a1048c29159deed8496a71 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package NET.worlds.console;
import java.awt.FlowLayout;
import java.awt.Frame;
public class MapFrame extends Frame {
private static final long serialVersionUID = 1756423575260176209L;
MapTile mp;
public MapFrame() {
super(Console.message("Map-Tile"));
this.setLayout(new FlowLayout());
this.mp = new MapTile();
this.add(this.mp);
this.resize(325, 300);
this.validate();
this.show();
}
}
|