summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/engine/gfx
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2016-01-11 10:37:38 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-01-11 11:45:57 +0100
commit432fb6f91d186dd7dad12982d24aa66a4ae80ec0 (patch)
tree015163fd9b71898d0f659f4ed7f385f7c25841e5 /core/src/ch/asynk/rustanddust/engine/gfx
parent21af522854d1b10289e6c338be0663132afe5ba6 (diff)
downloadRustAndDust-432fb6f91d186dd7dad12982d24aa66a4ae80ec0.zip
RustAndDust-432fb6f91d186dd7dad12982d24aa66a4ae80ec0.tar.gz
ArrayListIt -> IterableArray
Diffstat (limited to 'core/src/ch/asynk/rustanddust/engine/gfx')
-rw-r--r--core/src/ch/asynk/rustanddust/engine/gfx/animations/AnimationSequence.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/ch/asynk/rustanddust/engine/gfx/animations/AnimationSequence.java b/core/src/ch/asynk/rustanddust/engine/gfx/animations/AnimationSequence.java
index d2feee8..49dd353 100644
--- a/core/src/ch/asynk/rustanddust/engine/gfx/animations/AnimationSequence.java
+++ b/core/src/ch/asynk/rustanddust/engine/gfx/animations/AnimationSequence.java
@@ -5,11 +5,11 @@ import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.graphics.glutils.ShapeRenderer;
import ch.asynk.rustanddust.engine.gfx.Animation;
-import ch.asynk.rustanddust.engine.util.ArrayListIt;
+import ch.asynk.rustanddust.engine.util.IterableArray;
public class AnimationSequence implements Animation, Pool.Poolable
{
- private ArrayListIt<Animation> animations;
+ private IterableArray<Animation> animations;
private static final Pool<AnimationSequence> animationSequencePool = new Pool<AnimationSequence>() {
@Override
@@ -22,7 +22,7 @@ public class AnimationSequence implements Animation, Pool.Poolable
{
AnimationSequence seq = animationSequencePool.obtain();
if (seq.animations == null)
- seq.animations = new ArrayListIt<Animation>(capacity);
+ seq.animations = new IterableArray<Animation>(capacity);
else
seq.animations.ensureCapacity(capacity);