cleanup: make Animate class private to the package

since it has no utility outside of the engine itself

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@543 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-02-18 01:56:34 +00:00
parent feb04ae09a
commit beb640e2e8

View file

@ -10,7 +10,10 @@ package micropolisj.engine;
import static micropolisj.engine.TileConstants.*; import static micropolisj.engine.TileConstants.*;
public class Animate /**
* Contains data used for tile animation.
*/
class Animate
{ {
static final char [] aniTile = { static final char [] aniTile = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
@ -118,6 +121,9 @@ public class Animate
/* */ /* */
}; };
/**
* Contains data used for industrial zone animations.
*/
static class Smoke static class Smoke
{ {
// There are eight full Industry-zone images in the tiles bank. // There are eight full Industry-zone images in the tiles bank.