Revision 318c0a7d
Added by Leszek Koltunski about 4 years ago
| src/main/java/org/distorted/effects/scramble/ScrambleEffect.java | ||
|---|---|---|
| 27 | 27 |
import org.distorted.library.main.DistortedScreen; |
| 28 | 28 |
import org.distorted.library.message.EffectListener; |
| 29 | 29 |
|
| 30 |
import org.distorted.objectlib.main.ObjectList;
|
|
| 30 |
import org.distorted.objectlib.main.ObjectType;
|
|
| 31 | 31 |
import org.distorted.objectlib.main.TwistyObject; |
| 32 | 32 |
|
| 33 | 33 |
import org.distorted.effects.BaseEffect; |
| ... | ... | |
| 89 | 89 |
ScrambleEffect() |
| 90 | 90 |
{
|
| 91 | 91 |
mRnd = new Random( System.currentTimeMillis() ); |
| 92 |
mScrambles = new int[ObjectList.MAX_SCRAMBLE][3];
|
|
| 92 |
mScrambles = new int[ObjectType.MAX_SCRAMBLE][3];
|
|
| 93 | 93 |
} |
| 94 | 94 |
|
| 95 | 95 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
Also available in: Unified diff
Reename ObjectList to a more logical ObjectType.