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:
parent
feb04ae09a
commit
beb640e2e8
1 changed files with 7 additions and 1 deletions
|
@ -10,7 +10,10 @@ package micropolisj.engine;
|
|||
|
||||
import static micropolisj.engine.TileConstants.*;
|
||||
|
||||
public class Animate
|
||||
/**
|
||||
* Contains data used for tile animation.
|
||||
*/
|
||||
class Animate
|
||||
{
|
||||
static final char [] aniTile = {
|
||||
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
|
||||
{
|
||||
// There are eight full Industry-zone images in the tiles bank.
|
||||
|
|
Reference in a new issue