Last change
on this file since 4666fae 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 | |
---|
1 | package com.medievaltech.advancewars;
|
---|
2 |
|
---|
3 | import com.medievaltech.advancewars.Enum.*;
|
---|
4 | import com.medievaltech.advancewars.GameView.DrawingThread;
|
---|
5 |
|
---|
6 | public 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.