comparison game/G.java @ 75:b586ce4f6d97

Large GUI code cleanup.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 03 Mar 2011 04:04:57 +0200
parents
children 43f68fe605de
comparison
equal deleted inserted replaced
74:b7adeae80363 75:b586ce4f6d97
1 package game;
2
3 import java.awt.*;
4 import java.awt.geom.*;
5 import java.awt.event.*;
6 import java.awt.image.*;
7 import java.awt.event.*;
8 import java.awt.font.*;
9 import javax.imageio.*;
10 import javax.swing.*;
11 import java.util.*;
12 import java.io.*;
13 import game.*;
14 import javax.sound.sampled.*;
15
16 public class G
17 {
18 public static final int numFonts = 3;
19 public static Font fonts[];
20 public static FontMetrics metrics[];
21
22 public static SoundManager smgr;
23
24 public static Dimension screenDim;
25
26 public static BufferedImage lautaBG = null, lautaBGScaled = null;
27 }