source: advance-wars/src/com/medievaltech/advancewars/Static.java@ bb2fa26

Last change on this file since bb2fa26 was 4666fae, checked in by dportnoy <devnull@…>, 13 years ago

Moved many widely used variables to the Static class.

  • Property mode set to 100644
File size: 569 bytes
Line 
1package com.medievaltech.advancewars;
2
3import com.medievaltech.advancewars.Enum.*;
4import com.medievaltech.advancewars.GameView.DrawingThread;
5
6public class Static {
7 public static Map map;
8
9 public static GameState gameState;
10
11 public static Tile grassTile, oceanTile;
12
13 public static Turn turn;
14
15 public static Player human, enemy;
16
17 public static DrawingThread thread;
18
19 public static Game game;
20
21 public static boolean run = false;
22
23 public static com.medievaltech.gui.Window wndMainMenu;
24}
Note: See TracBrowser for help on using the repository browser.